:root {
  --ink: #13223a;
  --muted: #65748b;
  --line: #dfe7f0;
  --soft: #f4f8fb;
  --white: #ffffff;
  --blue: #1479d4;
  --blue-dark: #0b4b89;
  --orange: #f58220;
  --green: #23a26d;
  --shadow: 0 20px 60px rgba(21, 51, 89, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 231, 240, 0.78);
  backdrop-filter: blur(16px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 30px;
  height: 30px;
}

.brand span {
  font-size: 1rem;
}

.brand .ax {
  color: var(--blue);
}

.brand .novus {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0;
}

.nav-toggle::before {
  content: "\2630";
  font-size: 1.35rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.drop-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #263a55;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.main-nav a:hover,
.drop-button:hover,
.main-nav a.active {
  color: var(--blue-dark);
  background: #edf6ff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 121, 212, 0.24);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 130, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 42%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 121, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 121, 212, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.hero .section-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 38px;
  min-height: calc(100vh - 62px);
  padding: 48px 0 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.4vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  color: #4c5f78;
  font-size: 1.04rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(20, 121, 212, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.platform-visual {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(20, 121, 212, 0.24), transparent 30%),
    linear-gradient(145deg, #061831 0%, #0a2345 52%, #06172d 100%);
  box-shadow: 0 24px 70px rgba(6, 22, 49, 0.2);
  overflow: hidden;
  border: 1px solid rgba(216, 230, 244, 0.14);
}

.platform-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.platform-title,
.platform-map {
  position: relative;
  z-index: 1;
}

.platform-title {
  text-align: center;
}

.platform-title span {
  display: block;
  color: #52b7ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.platform-title strong {
  display: block;
  max-width: 520px;
  margin: 7px auto 0;
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.platform-map {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
}

.platform-center,
.area-cluster {
  outline: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(122px, 11vw, 148px);
  aspect-ratio: 1;
  padding: 15px;
  border: 1px solid rgba(216, 230, 244, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.platform-center img {
  width: clamp(42px, 4.4vw, 56px);
}

.platform-center strong {
  max-width: 11ch;
  color: var(--blue-dark);
  font-size: 0.92rem;
  line-height: 1.05;
}

.platform-center small {
  color: #50647d;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.15;
}

.area-cluster {
  position: absolute;
  min-width: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  width: clamp(106px, 9.5vw, 122px);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(216, 230, 244, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
  text-align: center;
  z-index: 2;
}

.area-ai {
  left: 80%;
  top: 0%;
  transform: translateX(-50%);
  border-color: rgba(82, 183, 255, 0.44);
}

.area-saas {
  right: 0%;
  top: 80%;
  transform: translateY(-50%);
  border-color: rgba(35, 162, 109, 0.46);
}

.area-auto {
  left: 14%;
  bottom: 5%;
  transform: translateX(-50%);
  border-color: rgba(151, 85, 255, 0.46);
}

.area-enterprise {
  left: 0%;
  top: 15%;
  transform: translateY(-50%);
  border-color: rgba(245, 130, 32, 0.5);
}

.area-cluster > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #dff3ff;
  background: rgba(20, 121, 212, 0.22);
  font-size: 0.7rem;
  font-weight: 900;
}

.area-cluster strong {
  display: block;
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.08;
}

.area-cluster small {
  display: block;
  max-width: 12ch;
  color: #d7e5f4;
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1.15;
}

.ripple,
.connector {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.ripple {
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(82, 183, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.76);
  animation: mapRipple 5.4s ease-out infinite;
}

.ripple-two {
  animation-delay: 1.6s;
}

.ripple-three {
  animation-delay: 3.2s;
}

.connector {
  width: 1px;
  height: 21%;
  background: linear-gradient(180deg, rgba(82, 183, 255, 0), rgba(82, 183, 255, 0.58), rgba(82, 183, 255, 0));
  transform-origin: top center;
}

.connector-top {
  transform: translate(-50%, -100%);
}

.connector-right {
  transform: rotate(90deg) translate(-50%, -100%);
}

.connector-bottom {
  transform: rotate(180deg) translate(-50%, -100%);
}

.connector-left {
  transform: rotate(270deg) translate(-50%, -100%);
}

.platform-center:hover,
.platform-center:focus-visible,
.area-cluster:hover,
.area-cluster:focus-visible {
  z-index: 8;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(82, 183, 255, 0.16);
}

.platform-center:hover,
.platform-center:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  transform: translate(-50%, -50%) scale(1.04);
}

.area-ai:hover,
.area-ai:focus-visible {
  transform: translateX(-50%) scale(1.07);
}

.area-saas:hover,
.area-saas:focus-visible {
  transform: translateY(-50%) scale(1.07);
}

.area-auto:hover,
.area-auto:focus-visible {
  transform: translateX(-50%) scale(1.07);
}

.area-enterprise:hover,
.area-enterprise:focus-visible {
  transform: translateY(-50%) scale(1.07);
}

@keyframes mapRipple {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }
  18% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.55);
  }
}

section {
  padding: 5px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 36px rgba(19, 34, 58, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.link-card {
  display: block;
  overflow: hidden;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(20, 121, 212, 0.38);
  box-shadow: 0 18px 48px rgba(19, 34, 58, 0.13);
  transform: translateY(-5px);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-dark);
  transition: 180ms ease;
}

.link-card:hover .card-arrow,
.link-card:focus-visible .card-arrow {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateX(4px);
}

.solution-card {
  padding-top: 30px;
}

.solution-card h3 {
  font-size: 1.32rem;
}

.card.accent {
  border-color: rgba(20, 121, 212, 0.25);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: #e8f4ff;
  font-size: 1.25rem;
}

.usecase-card {
  display: grid;
  gap: 12px;
}

.usecase-card .icon {
  margin-bottom: 2px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 10px;
  border-radius: 999px;
  color: #33506f;
  background: #eef5fb;
  font-size: 0.86rem;
  font-weight: 750;
}

.band {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.process {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.process-item {
  position: relative;
  padding: 18px 18px 18px 66px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.page-hero {
  padding: 62px 0 48px;
  background: linear-gradient(135deg, #f7fbff, #ffffff 58%, #fff7ef);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  max-width: 940px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 8px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.contact-panel p,
.contact-panel a {
  color: #cfdbea;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
  color: #263a55;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 121, 212, 0.18);
  border-color: var(--blue);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.loading,
.error-message,
.sent-message {
  display: none;
  margin-top: 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

.loading {
  color: var(--blue-dark);
}

.error-message {
  color: #c93b2f;
}

.sent-message {
  color: var(--green);
}

.site-footer {
  padding: 64px 0 26px;
  background: #111d2f;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 1fr;
  gap: 36px;
}

.site-footer p,
.site-footer a {
  color: #cad6e3;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(1160px, calc(100% - 36px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebbd0;
  text-align: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: #aebbd0;
}

.newsletter-form .btn {
  white-space: nowrap;
}

.newsletter-status {
  min-height: 22px;
  margin-top: 10px;
  color: #8ee0b5;
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 930px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .drop-button {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .hero .section-inner,
  .split,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero .section-inner {
    min-height: auto;
    gap: 30px;
  }

  .platform-map {
    width: min(100%, 410px);
  }

  .grid-3,
  .grid-4,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .hero-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-inner,
  .form-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .platform-visual {
    padding: 16px;
  }

  .platform-map {
    width: min(100%, 300px);
  }

  .platform-title strong {
    font-size: 1.08rem;
  }

  .platform-title span {
    font-size: 0.72rem;
  }

  .platform-center {
    width: 86px;
    padding: 10px;
  }

  .platform-center img {
    width: 34px;
  }

  .platform-center strong {
    max-width: 9ch;
    font-size: 0.68rem;
  }

  .platform-center small {
    display: none;
  }

  .area-cluster {
    width: 72px;
    padding: 8px;
    gap: 4px;
  }

  .area-cluster > span {
    width: 24px;
    height: 24px;
    font-size: 0.54rem;
  }

  .area-cluster strong {
    max-width: 10ch;
    font-size: 0.57rem;
  }

  .area-cluster small {
    display: none;
  }

  .area-ai {
    top: 2%;
  }

  .area-saas {
    right: 0;
  }

  .area-auto {
    bottom: 2%;
  }

  .area-enterprise {
    left: 0;
  }

  .connector {
    height: 20%;
  }

  .section-head {
    display: block;
  }

}
