:root {
  --color-ink: #05070b;
  --color-ink-soft: #0b1018;
  --color-surface: #101722;
  --color-paper: #f5f7fa;
  --color-white: #ffffff;
  --color-text: #e9eef5;
  --color-muted: #98a4b3;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-accent: #56b8ff;
  --color-accent-strong: #2a9df4;
  --color-aqua: #69e6dc;
  --font-sans: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-width: 1380px;
  --header-height: 5.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.navigation-open {
  overflow: hidden;
}

body,
button,
a {
  font-family: var(--font-sans);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

::selection {
  color: var(--color-white);
  background: var(--color-accent-strong);
}

.site-container {
  width: min(100% - 2rem, var(--container-width));
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 0;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 0.35rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.button span {
  font-size: 1rem;
  transition: transform 220ms var(--ease-out);
}

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

.button:hover span {
  transform: translate(2px, -2px);
}

.button--primary {
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: 0 0 0 rgba(86, 184, 255, 0);
}

.button--primary:hover {
  color: var(--color-ink);
  background: #f1f8ff;
  box-shadow: 0 12px 36px rgba(86, 184, 255, 0.2);
}

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

.button--secondary:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0));
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header:has(.navbar-collapse.show) {
  border-bottom-color: var(--color-line);
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header .navbar {
  min-height: var(--header-height);
  padding-block: 0;
}

.site-header .navbar > .site-container {
  min-height: var(--header-height);
}

.brand-mark {
  position: relative;
  display: block;
  width: clamp(9.75rem, 13vw, 11.75rem);
  aspect-ratio: 5.12;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126.5%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.site-menu-toggle {
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: none !important;
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 0.31rem;
  background: var(--color-white);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.site-navigation__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
}

.site-navigation__links {
  gap: 0.15rem;
}

.site-navigation__links .nav-link {
  position: relative;
  min-height: 2.75rem;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-navigation__links .nav-link:hover,
.site-navigation__links .nav-link:focus-visible {
  color: var(--color-white);
}

.site-navigation__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.language-switcher a {
  padding: 0.55rem 0.15rem;
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--color-white);
}

.button--header {
  min-height: 2.9rem;
  padding-inline: 1rem;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 3.5rem) 0 5.75rem;
  color: var(--color-white);
  background:
    radial-gradient(circle at 74% 38%, rgba(42, 157, 244, 0.12), transparent 31rem),
    radial-gradient(circle at 92% 82%, rgba(105, 230, 220, 0.07), transparent 28rem),
    var(--color-ink);
}

.hero__sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to right, black, transparent 44%, black);
}

.hero__grid-pattern::before,
.hero__grid-pattern::after {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 75vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(86, 184, 255, 0.42), transparent);
  transform-origin: left center;
}

.hero__grid-pattern::before {
  transform: rotate(24deg);
}

.hero__grid-pattern::after {
  transform: rotate(-24deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero__glow--one {
  top: 12%;
  right: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(86, 184, 255, 0.1);
  box-shadow: 0 0 8rem rgba(86, 184, 255, 0.08) inset;
}

.hero__glow--two {
  bottom: -14rem;
  left: 35%;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(105, 230, 220, 0.07);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 4rem;
}

.hero__content {
  max-width: 48rem;
  animation: hero-content-in 480ms var(--ease-out) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: #b8c3d0;
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  font-weight: 750;
  letter-spacing: 0.17em;
}

.eyebrow__line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-aqua));
  box-shadow: 0 0 0.75rem rgba(86, 184, 255, 0.55);
}

.hero__title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.7rem, 12vw, 5.9rem);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__title span {
  display: block;
  color: transparent;
  background: linear-gradient(98deg, #ffffff 8%, #b9dfff 60%, #73dcd4 112%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 43rem;
  margin: 1.75rem 0 0;
  color: #aeb8c5;
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__signal {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.65rem;
  color: #778494;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__signal-dot {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--color-aqua);
  box-shadow: 0 0 0.85rem rgba(105, 230, 220, 0.8);
}

.hero__signal-dot::after {
  position: absolute;
  inset: -0.35rem;
  content: "";
  border: 1px solid rgba(105, 230, 220, 0.3);
  border-radius: inherit;
  animation: signal-pulse 2.8s ease-out infinite;
}

.hero__visual {
  width: 100%;
  max-width: 38rem;
  margin-inline: auto;
  animation: hero-visual-in 620ms 80ms var(--ease-out) both;
}

.ecosystem {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  isolation: isolate;
}

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

.ecosystem::before {
  inset: 18%;
  background: radial-gradient(circle, rgba(54, 164, 235, 0.17), rgba(24, 86, 128, 0.055) 46%, transparent 72%);
  filter: blur(0.45rem);
}

.ecosystem::after {
  inset: 6.5%;
  border: 1px solid rgba(118, 180, 222, 0.045);
  box-shadow: inset 0 0 5rem rgba(42, 157, 244, 0.025), 0 0 5rem rgba(42, 157, 244, 0.025);
}

.ecosystem__connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecosystem__axis,
.ecosystem__lanes use,
.ecosystem__streams use,
.ecosystem__orbit,
.ecosystem__sweep {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.ecosystem__axis {
  stroke: rgba(105, 181, 228, 0.105);
  stroke-width: 1;
  stroke-dasharray: 2 11;
}

.ecosystem__orbit {
  stroke: rgba(150, 201, 235, 0.14);
  stroke-width: 1;
  stroke-dasharray: 2 9;
  transform-origin: 300px 300px;
  animation: ecosystem-orbit-spin 42s linear infinite;
}

.ecosystem__orbit--middle {
  stroke: rgba(86, 184, 255, 0.105);
  stroke-dasharray: 1 14;
  animation-direction: reverse;
  animation-duration: 34s;
}

.ecosystem__orbit--inner {
  stroke: rgba(105, 230, 220, 0.16);
  stroke-dasharray: none;
  animation: none;
}

.ecosystem__sweep {
  stroke: url("#ecosystem-orbit-gradient");
  stroke-width: 1.35;
  stroke-dasharray: 96 1100;
  stroke-linecap: round;
  opacity: 0.48;
  transform-origin: 300px 300px;
  animation: ecosystem-sweep 12s linear infinite;
  filter: drop-shadow(0 0 0.4rem rgba(86, 184, 255, 0.5));
}

.ecosystem__lanes use {
  stroke: rgba(104, 177, 224, 0.22);
  stroke-width: 1;
}

.ecosystem__streams use {
  stroke: url("#ecosystem-lane-gradient");
  stroke-width: 1.7;
  stroke-dasharray: 10 90;
  stroke-linecap: round;
  opacity: 0.84;
  animation: ecosystem-stream 5.4s linear infinite;
  animation-delay: var(--stream-delay, 0s);
  filter: drop-shadow(0 0 0.3rem rgba(86, 184, 255, 0.7));
}

.ecosystem__endpoints circle {
  fill: #081521;
  stroke: #71d7dd;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 0.34rem rgba(86, 184, 255, 0.82));
  animation: ecosystem-endpoint 3.4s ease-in-out infinite;
}

.ecosystem__endpoints circle:nth-child(2n) {
  animation-delay: -1.7s;
}

.ecosystem__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 32%;
  aspect-ratio: 1;
  place-content: center;
  justify-items: center;
  overflow: visible;
  border: 1px solid rgba(143, 211, 255, 0.48);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(18, 45, 65, 0.82), rgba(5, 11, 17, 0.96) 64%),
    rgba(8, 13, 20, 0.94);
  box-shadow:
    0 0 0 0.72rem rgba(86, 184, 255, 0.03),
    0 0 0 1.7rem rgba(86, 184, 255, 0.018),
    0 0 5rem rgba(50, 151, 230, 0.22),
    inset 0 0 2.8rem rgba(86, 184, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

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

.ecosystem__core::before {
  inset: -13%;
  border: 1px dashed rgba(105, 230, 220, 0.17);
  animation: ecosystem-core-spin 30s linear infinite;
}

.ecosystem__core::after {
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background: radial-gradient(circle at 50% 28%, rgba(105, 230, 220, 0.055), transparent 48%);
}

.ecosystem__core-pulse {
  position: absolute;
  inset: -25%;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.12);
  border-radius: 50%;
  animation: ecosystem-core-wave 4.2s ease-out infinite;
  pointer-events: none;
}

.ecosystem__core-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 0.5rem;
  height: 0.5rem;
  place-items: center;
  margin-bottom: 0.72rem;
  border: 1px solid var(--color-aqua);
  background: rgba(105, 230, 220, 0.08);
  transform: rotate(45deg);
  box-shadow: 0 0 1.2rem rgba(105, 230, 220, 0.72);
}

.ecosystem__core-mark::after {
  width: 0.16rem;
  height: 0.16rem;
  content: "";
  border-radius: 50%;
  background: #dffffc;
  box-shadow: 0 0 0.6rem rgba(105, 230, 220, 0.95);
}

.ecosystem__core strong,
.ecosystem__core small,
.ecosystem__core-status {
  position: relative;
  z-index: 1;
}

.ecosystem__core strong {
  font-size: clamp(0.82rem, 2.35vw, 1.4rem);
  font-weight: 690;
  letter-spacing: 0.22em;
  text-shadow: 0 0 1.5rem rgba(137, 209, 255, 0.2);
}

.ecosystem__core small {
  margin-top: 0.32rem;
  color: #7792a7;
  font-size: clamp(0.34rem, 0.9vw, 0.48rem);
  font-weight: 750;
  letter-spacing: 0.16em;
}

.ecosystem__core-status {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  margin-top: 0.65rem;
}

.ecosystem__core-status i {
  width: 0.36rem;
  height: 1px;
  background: #335a72;
}

.ecosystem__core-status i:nth-child(2) {
  width: 1rem;
  background: linear-gradient(90deg, #3a8db8, #69e6dc);
  box-shadow: 0 0 0.5rem rgba(105, 230, 220, 0.5);
}

.ecosystem__node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.48rem;
  padding: 0.58rem 0.82rem 0.58rem 0.68rem;
  color: #d3dce5;
  border: 1px solid rgba(146, 194, 226, 0.19);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(17, 28, 39, 0.92), rgba(6, 12, 18, 0.9));
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  font-size: clamp(0.58rem, 1.15vw, 0.76rem);
  font-weight: 720;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.ecosystem__node::before {
  width: 0.34rem;
  height: 0.34rem;
  flex: 0 0 auto;
  content: "";
  border: 1px solid color-mix(in srgb, var(--node-color, #56b8ff) 80%, white);
  border-radius: 50%;
  background: color-mix(in srgb, var(--node-color, #56b8ff) 72%, transparent);
  box-shadow: 0 0 0.7rem color-mix(in srgb, var(--node-color, #56b8ff) 62%, transparent);
  animation: ecosystem-node-signal 3.6s ease-in-out infinite;
  animation-delay: var(--node-delay, 0s);
}

.ecosystem__node:hover {
  color: var(--color-white);
  border-color: color-mix(in srgb, var(--node-color, #56b8ff) 58%, transparent);
  background: linear-gradient(145deg, rgba(24, 51, 70, 0.96), rgba(8, 18, 27, 0.94));
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.34), 0 0 1.8rem color-mix(in srgb, var(--node-color, #56b8ff) 12%, transparent);
  transform: translate(-50%, -50%) scale(1.045);
}

.ecosystem__node--crm { top: 21.5%; left: 21.5%; --node-delay: -0.4s; }
.ecosystem__node--mobile { top: 9.7%; left: 50%; --node-delay: -1.8s; --node-color: #69e6dc; }
.ecosystem__node--commerce { top: 21.5%; left: 78.5%; --node-delay: -2.7s; }
.ecosystem__node--erp { top: 50%; left: 88.3%; --node-delay: -1.1s; --node-color: #8acfff; }
.ecosystem__node--stock { top: 78.5%; left: 78.5%; --node-delay: -3.2s; --node-color: #8acfff; }
.ecosystem__node--clients { top: 90.3%; left: 50%; --node-delay: -2.1s; --node-color: #69e6dc; }
.ecosystem__node--data { top: 78.5%; left: 21.5%; --node-delay: -0.9s; --node-color: #69e6dc; }
.ecosystem__node--automation { top: 50%; left: 11.7%; --node-delay: -2.9s; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 1.65rem;
  left: 50%;
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: #718093;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 3rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero__scroll-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--color-accent);
  animation: scroll-line 2.4s var(--ease-out) infinite;
}

/* Problems */
.problems {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(rgba(5, 7, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 11, 0.035) 1px, transparent 1px),
    var(--color-paper);
  background-size: 5rem 5rem;
}

.problems::before {
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 38rem;
  height: 38rem;
  content: "";
  border: 1px solid rgba(42, 157, 244, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(42, 157, 244, 0.018),
    0 0 0 10rem rgba(42, 157, 244, 0.012);
  pointer-events: none;
}

.problems .site-container {
  position: relative;
  z-index: 1;
}

.problems__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  color: #5c6875;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-eyebrow > span {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: #167fc5;
  border: 1px solid rgba(42, 157, 244, 0.3);
  border-radius: 50%;
  font-size: 0.62rem;
  letter-spacing: 0;
}

.problems__header h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.45rem, 6.8vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1;
  text-wrap: balance;
}

.problems__intro {
  max-width: 41rem;
  margin: 0;
  color: #53606d;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.8;
}

.problems__grid {
  display: grid;
  gap: 1rem;
}

.problem-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid rgba(5, 7, 11, 0.11);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1.5rem 4rem rgba(22, 34, 48, 0);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.problem-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(42, 157, 244, 0.72), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}

.problem-card:hover {
  border-color: rgba(42, 157, 244, 0.28);
  box-shadow: 0 1.5rem 4rem rgba(22, 34, 48, 0.08);
  transform: translateY(-0.3rem);
}

.problem-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.problem-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.problem-card__number {
  color: #96a0aa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.problem-card__visual {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  color: #52606d;
  border: 1px solid rgba(42, 157, 244, 0.18);
  border-radius: 0.55rem;
  background: rgba(42, 157, 244, 0.035);
}

.problem-card__visual svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.problem-card__content {
  max-width: 31rem;
}

.problem-card__tag {
  margin: 0 0 0.65rem;
  color: #778391;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.problem-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.problem-card__content > p:last-child {
  margin: 0.7rem 0 0;
  color: #5c6875;
  font-size: 0.96rem;
  line-height: 1.6;
}

.problem-card--dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 88% 10%, rgba(86, 184, 255, 0.15), transparent 18rem),
    var(--color-ink-soft);
}

.problem-card--dark:hover {
  border-color: rgba(86, 184, 255, 0.38);
  box-shadow: 0 1.5rem 4rem rgba(5, 7, 11, 0.18);
}

.problem-card--dark .problem-card__number,
.problem-card--dark .problem-card__tag {
  color: #8594a4;
}

.problem-card--dark .problem-card__visual {
  color: #b9cee2;
  border-color: rgba(86, 184, 255, 0.22);
  background: rgba(86, 184, 255, 0.07);
}

.problem-card--dark h3 {
  color: var(--color-white);
}

.problem-card--dark .problem-card__content > p:last-child {
  color: #a7b2be;
}

.problems__conclusion {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 52rem;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0 auto;
}

.problems__conclusion > span {
  width: 2.75rem;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 0.82rem;
  background: linear-gradient(90deg, var(--color-accent-strong), var(--color-aqua));
}

.problems__conclusion p {
  margin: 0;
  color: #53606d;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.7;
}

.problems__conclusion strong {
  color: var(--color-ink);
  font-weight: 750;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 6%, rgba(42, 157, 244, 0.14), transparent 25rem),
    linear-gradient(140deg, #05070b 0%, #0a111a 62%, #0b1723 100%);
}

.services::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  pointer-events: none;
}

.services .site-container {
  position: relative;
  z-index: 1;
}

.services__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-eyebrow--dark {
  color: #8c9cac;
}

.section-eyebrow--dark > span {
  color: var(--color-aqua);
  border-color: rgba(86, 184, 255, 0.3);
}

.services__header h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.7vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.services__intro {
  max-width: 40rem;
  margin: 0;
  color: #a9b5c1;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.75;
}

.services__grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.4rem;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0);
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.service-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.08);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}

.service-card:hover {
  border-color: rgba(86, 184, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.3rem);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-card--accent {
  border-color: rgba(86, 184, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(42, 157, 244, 0.11), rgba(86, 184, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card__number {
  color: #748393;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  color: #a8c9e3;
  border: 1px solid rgba(86, 184, 255, 0.2);
  border-radius: 0.55rem;
  background: rgba(86, 184, 255, 0.055);
}

.service-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card__content {
  flex: 1 1 auto;
}

.service-card h3 {
  max-width: 19ch;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card__content p {
  margin: 0.8rem 0 0;
  color: #9eabb8;
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card__tags li {
  padding: 0.38rem 0.55rem;
  color: #9eb1c3;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

/* Mobile showcase */
.mobile-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(42, 157, 244, 0.08), transparent 27rem),
    #f5f7f9;
}

.mobile-showcase::before {
  position: absolute;
  top: 9rem;
  left: -18rem;
  width: 35rem;
  height: 35rem;
  content: "";
  border: 1px solid rgba(42, 157, 244, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(42, 157, 244, 0.018);
  pointer-events: none;
}

.mobile-showcase .site-container {
  position: relative;
  z-index: 1;
}

.mobile-showcase__layout {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.mobile-showcase__content h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1;
  text-wrap: balance;
}

.mobile-showcase__lead {
  max-width: 39rem;
  margin: 1.75rem 0 0;
  color: #53606d;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.mobile-showcase__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.mobile-showcase__platforms span {
  padding: 0.52rem 0.72rem;
  color: #51606f;
  border: 1px solid rgba(5, 7, 11, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-stage {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(42, 157, 244, 0.19), transparent 20rem),
    #07101a;
  background-size: 4rem 4rem, 4rem 4rem, auto, auto;
  box-shadow: 0 2.5rem 6rem rgba(10, 24, 38, 0.2);
}

.mobile-stage__orbit {
  position: absolute;
  top: -6rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(86, 184, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(86, 184, 255, 0.018);
}

.mobile-phone {
  position: absolute;
  z-index: 3;
  top: 2.1rem;
  left: 50%;
  width: 12.5rem;
  padding: 0.4rem;
  border: 1px solid #36404b;
  border-radius: 2rem;
  background: #06090d;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) rotate(-1.5deg);
}

.mobile-phone__speaker {
  position: absolute;
  z-index: 4;
  top: 0.65rem;
  left: 50%;
  width: 3.2rem;
  height: 0.28rem;
  border-radius: 999px;
  background: #141a20;
  transform: translateX(-50%);
}

.mobile-phone__screen {
  position: relative;
  height: 28.5rem;
  overflow: hidden;
  border-radius: 1.65rem;
  background: #f3f6f8;
}

.mobile-app__status,
.mobile-app__header,
.mobile-app__sales,
.mobile-app__stats,
.mobile-app__activity {
  margin-inline: 0.78rem;
}

.mobile-app__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.35rem;
  color: #71808e;
  font-size: 0.45rem;
  letter-spacing: 0.08em;
}

.mobile-app__status strong {
  color: #111923;
  letter-spacing: 0.15em;
}

.mobile-app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  color: #202a35;
  font-size: 0.62rem;
  font-weight: 760;
}

.mobile-app__header i {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #e9f6ff;
  border-radius: 50%;
  background: #157fc4;
  font-size: 0.52rem;
  font-style: normal;
}

.mobile-app__sales {
  margin-top: 0.75rem;
  padding: 0.85rem;
  color: #eaf6ff;
  border-radius: 0.75rem;
  background: radial-gradient(circle at 90% 0%, rgba(86, 184, 255, 0.24), transparent 5rem), #0a1723;
}

.mobile-app__sales small {
  display: block;
  color: #8fa8ba;
  font-size: 0.5rem;
}

.mobile-app__sales strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.mobile-app__sales span {
  display: inline-block;
  margin-top: 0.35rem;
  color: #6ed2b3;
  font-size: 0.5rem;
  font-weight: 700;
}

.mobile-app__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.mobile-app__stats div {
  padding: 0.55rem 0.4rem;
  border: 1px solid #e2e8ed;
  border-radius: 0.5rem;
  background: #fff;
}

.mobile-app__stats span,
.mobile-app__stats strong {
  display: block;
}

.mobile-app__stats span {
  min-height: 1.2rem;
  color: #71808e;
  font-size: 0.4rem;
  line-height: 1.2;
}

.mobile-app__stats strong {
  margin-top: 0.15rem;
  color: #15202b;
  font-size: 0.82rem;
}

.mobile-app__activity {
  margin-top: 0.55rem;
  padding: 0.7rem;
  border: 1px solid #e2e8ed;
  border-radius: 0.6rem;
  background: #fff;
}

.mobile-app__activity > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #73808d;
  font-size: 0.45rem;
}

.mobile-app__activity strong {
  color: #18232e;
  font-size: 0.58rem;
}

.mobile-app__bars,
.mobile-tablet__bars {
  display: flex;
  height: 3.8rem;
  align-items: end;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.mobile-app__bars i,
.mobile-tablet__bars i {
  height: var(--bar);
  flex: 1;
  border-radius: 0.2rem 0.2rem 0 0;
  background: linear-gradient(to top, #1688cf, #62c8ec);
}

.mobile-app__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.55rem 0.3rem 0.7rem;
  border-top: 1px solid #e2e8ed;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-app__nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.16rem;
  color: #8995a1;
  font-size: 0.35rem;
}

.mobile-app__nav span.is-active {
  color: #167fc5;
}

.mobile-app__nav svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-tablet {
  display: none;
}

.mobile-flow {
  position: absolute;
  z-index: 4;
    top: 32.5rem;
  right: 1rem;
  bottom: auto;
  left: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.7rem;
  background: rgba(5, 12, 19, 0.86);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.mobile-flow__route,
.mobile-flow__systems {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.mobile-flow__route {
  color: #7f91a2;
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.mobile-flow__route strong {
  color: #c9e8fa;
}

.mobile-flow__route i {
  color: #4ab9e7;
  font-style: normal;
}

.mobile-flow__systems {
  margin-top: 0.55rem;
}

.mobile-flow__systems span {
  padding: 0.3rem 0.42rem;
  color: #9fb1c2;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.35rem;
  font-size: 0.46rem;
}

.mobile-benefits {
  display: grid;
  gap: 0;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(5, 7, 11, 0.12);
}

.mobile-benefit {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(5, 7, 11, 0.1);
}

.mobile-benefit__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: #167fc5;
  border: 1px solid rgba(42, 157, 244, 0.2);
  border-radius: 0.55rem;
  background: rgba(42, 157, 244, 0.045);
}

.mobile-benefit__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mobile-benefit h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.mobile-benefit p {
  margin: 0.5rem 0 0;
  color: #5b6875;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Nexo */
.nexo {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 50% 43%, rgba(42, 157, 244, 0.13), transparent 31rem),
    linear-gradient(150deg, #05070b, #08121d 60%, #07101a);
}

.nexo::before {
  position: absolute;
  inset: 0;
  content: "";
  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: 5rem 5rem;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.nexo .site-container {
  position: relative;
  z-index: 1;
}

.nexo__header {
  max-width: 66rem;
  margin-inline: auto;
  text-align: center;
}

.nexo__header .section-eyebrow {
  justify-content: center;
}

.nexo__header h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--color-white);
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1;
  text-wrap: balance;
}

.nexo__header > p:last-child {
  max-width: 47rem;
  margin: 1.5rem auto 0;
  color: #98a7b5;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.nexo-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 2rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 5rem rgba(42, 157, 244, 0.03);
}

.nexo-map__connections {
  display: none;
}

.nexo-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 8.5rem;
  height: 8.5rem;
  align-self: center;
  place-items: center;
  padding: 1.4rem;
  color: #dff4ff;
  border: 1px solid rgba(86, 184, 255, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 157, 244, 0.25), rgba(8, 19, 30, 0.96) 70%);
  box-shadow:
    0 0 2.5rem rgba(42, 157, 244, 0.17),
    0 0 0 1rem rgba(42, 157, 244, 0.025);
}

.nexo-core::before,
.nexo-core__ring {
  position: absolute;
  inset: -1.2rem;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.13);
  border-radius: 50%;
}

.nexo-core__ring {
  inset: -2.4rem;
  border-style: dashed;
}

.nexo-core img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nexo-core small {
  display: block;
  width: 100%;
  color: #7ca0ba;
  font-size: 0.46rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-align: center;
}

.nexo-map__nodes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.nexo-node {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 4.35rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.8rem;
  color: #d8e2eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background: rgba(8, 16, 25, 0.86);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
  text-align: left;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.nexo-node::before {
  position: absolute;
  top: 50%;
  left: -0.2rem;
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  border-radius: 50%;
  background: #42576a;
  box-shadow: 0 0 0 0.22rem rgba(66, 87, 106, 0.15);
  transform: translateY(-50%);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.nexo-node:hover,
.nexo-node:focus-visible,
.nexo-node.is-active {
  color: var(--color-white);
  border-color: rgba(86, 184, 255, 0.46);
  background: rgba(22, 74, 108, 0.42);
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.26), 0 0 1.8rem rgba(42, 157, 244, 0.09);
  outline: none;
  transform: translateY(-0.15rem);
}

.nexo-node:hover::before,
.nexo-node:focus-visible::before,
.nexo-node.is-active::before {
  background: var(--color-aqua);
  box-shadow: 0 0 0 0.3rem rgba(86, 184, 255, 0.15), 0 0 1rem rgba(86, 184, 255, 0.55);
}

.nexo-node strong {
  overflow: hidden;
  max-width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nexo-node small {
  margin-top: 0.18rem;
  color: #72869a;
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nexo-map__connections line {
  stroke: rgba(116, 154, 180, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke 220ms ease, stroke-width 220ms ease, filter 220ms ease;
}

.nexo-map__connections line.is-active {
  stroke: #56b8ff;
  stroke-width: 2;
  filter: drop-shadow(0 0 0.35rem rgba(86, 184, 255, 0.75));
}

.nexo-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  min-height: 7.5rem;
  margin-top: 1rem;
  padding: 1.3rem clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.035);
}

.nexo-explainer > span {
  color: #61bde8;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nexo-explainer h3,
.nexo-explainer p {
  margin: 0;
}

.nexo-explainer h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.nexo-explainer p {
  color: #98a8b7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.nexo-relations {
  display: grid;
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nexo-relations article {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nexo-relations article > span {
  color: #5c778d;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.nexo-relations h3 {
  margin: 0.65rem 0 0;
  color: var(--color-white);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.nexo-relations p,
.nexo-relations small {
  display: block;
  margin: 0.6rem 0 0;
}

.nexo-relations p {
  color: #b1c0cc;
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1.5;
}

.nexo-relations small {
  color: #75889a;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Solutions */
.solutions {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 7% 20%, rgba(42, 157, 244, 0.08), transparent 24rem),
    linear-gradient(rgba(5, 7, 11, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 11, 0.032) 1px, transparent 1px),
    #f4f7fa;
  background-size: auto, 5rem 5rem, 5rem 5rem, auto;
}

.solutions::before {
  position: absolute;
  top: 8rem;
  right: -19rem;
  width: 42rem;
  height: 42rem;
  content: "";
  border: 1px solid rgba(42, 157, 244, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(42, 157, 244, 0.018), 0 0 0 12rem rgba(42, 157, 244, 0.012);
  pointer-events: none;
}

.solutions .site-container {
  position: relative;
  z-index: 1;
}

.solutions__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.solutions__header h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.solutions__intro {
  max-width: 39rem;
}

.solutions__intro p {
  margin: 0;
  color: #526170;
  font-size: clamp(1rem, 1.55vw, 1.14rem);
  line-height: 1.75;
}

.solutions__intro small {
  display: block;
  margin-top: 1rem;
  color: #7d8995;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solutions__grid {
  display: grid;
  gap: 1.25rem;
}

.solution-demo {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  padding: clamp(1.1rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(5, 7, 11, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 1.5rem 4.5rem rgba(25, 44, 64, 0.07);
  backdrop-filter: blur(1rem);
}

.solution-demo__heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solution-demo__number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  color: #277daf;
  border: 1px solid rgba(42, 157, 244, 0.2);
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 800;
}

.solution-demo__heading p,
.solution-demo__heading h3 {
  margin: 0;
}

.solution-demo__heading p {
  color: #71808e;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.solution-demo__heading h3 {
  max-width: 24ch;
  margin-top: 0.38rem;
  color: #101820;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.solution-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #dfeaf3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7rem;
  background: #08111a;
  box-shadow: 0 1.5rem 4rem rgba(6, 16, 25, 0.18);
}

.solution-window--crm,
.solution-window--bi {
  display: flex;
  flex-direction: column;
}

.solution-window__bar {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1621;
}

.solution-window__bar > strong {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.solution-window__bar > strong small {
  color: #57b9e8;
  font-size: 0.48rem;
}

.window-dots {
  display: flex;
  gap: 0.26rem;
}

.window-dots i {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #506172;
}

.window-dots i:first-child {
  background: #52aedd;
}

.window-user {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border-radius: 50%;
  color: #07111a;
  background: #6edbd3;
  font-size: 0.48rem;
  font-weight: 850;
}

.crm-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
}

.crm-toolbar div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crm-toolbar small {
  color: #668097;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.crm-toolbar strong {
  overflow: hidden;
  color: #f0f6fa;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-toolbar > span {
  flex: 0 0 auto;
  padding: 0.42rem 0.55rem;
  color: #06121b;
  border-radius: 0.28rem;
  background: #61c8ec;
  font-size: 0.54rem;
  font-weight: 800;
}

.demo-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.demo-kpis > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.025);
}

.demo-kpis span {
  overflow: hidden;
  color: #7e93a5;
  font-size: 0.5rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-kpis strong {
  margin-top: 0.3rem;
  color: #f5f8fb;
  font-size: 1rem;
}

.demo-kpis small {
  color: #69d9cf;
  font-size: 0.48rem;
}

.crm-pipeline {
  display: grid;
  flex: 1;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.pipeline-stage {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.025);
}

.pipeline-stage > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.35rem;
  color: #95a9ba;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pipeline-stage > span i {
  width: 0.34rem;
  height: 0.34rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3d8fbd;
}

.pipeline-stage > span b {
  margin-left: auto;
  color: #577084;
  font-size: 0.46rem;
}

.pipeline-stage > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.48rem;
  border-left: 2px solid #327da7;
  border-radius: 0.25rem;
  background: #101e2b;
}

.pipeline-stage > div strong,
.pipeline-stage > div small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline-stage > div strong {
  color: #dbe5ec;
  font-size: 0.53rem;
}

.pipeline-stage > div small {
  color: #7490a5;
  font-size: 0.46rem;
}

.pipeline-stage--won > span i {
  background: #69d9cf;
}

.pipeline-stage--won > div {
  border-left-color: #69d9cf;
}

.solution-window--management {
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #09131d;
  background-size: 3rem 3rem;
}

.management-topbar,
.management-topbar > div {
  display: flex;
  align-items: center;
}

.management-topbar {
  justify-content: space-between;
  gap: 1rem;
}

.management-topbar > div {
  gap: 0.65rem;
}

.management-logo {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 0.3rem;
  color: #05121b;
  background: linear-gradient(135deg, #70e2d7, #45a7e6);
  font-size: 0.62rem;
  font-weight: 900;
}

.management-topbar strong {
  font-size: 0.72rem;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.42rem;
  color: #78ded5;
  border: 1px solid rgba(105, 217, 207, 0.2);
  border-radius: 999px;
  font-size: 0.42rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.live-badge i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #69d9cf;
  box-shadow: 0 0 0.55rem rgba(105, 217, 207, 0.8);
}

.management-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.management-metrics > div {
  display: flex;
  min-width: 0;
  min-height: 5.2rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.42rem;
  background: rgba(255, 255, 255, 0.025);
}

.management-metrics .metric-featured {
  background: linear-gradient(135deg, rgba(42, 157, 244, 0.22), rgba(42, 157, 244, 0.05));
}

.management-metrics .metric-warning {
  border-color: rgba(255, 187, 89, 0.16);
}

.management-metrics span {
  overflow: hidden;
  color: #8497a8;
  font-size: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-metrics strong {
  color: #f2f7fa;
  font-size: 1.05rem;
}

.management-metrics small {
  color: #65d4ca;
  font-size: 0.46rem;
}

.metric-warning small {
  color: #d9aa67;
}

.management-activity {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.42rem;
  background: rgba(255, 255, 255, 0.018);
}

.management-activity > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #b8c6d1;
  font-size: 0.58rem;
}

.management-activity > div {
  display: grid;
  grid-template-columns: auto minmax(0, 0.5fr) minmax(0, 1fr) auto;
  gap: 0.48rem;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #89a0b2;
  font-size: 0.46rem;
}

.management-activity > div strong,
.management-activity > div small,
.management-activity > div span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-activity > div strong {
  color: #b9c7d1;
  font-weight: 650;
}

.status-dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #d5a05c;
}

.status-dot--aqua {
  background: #69d9cf;
}

.status-dot--blue {
  background: #45a7e6;
}

.sales-demo {
  position: relative;
  display: grid;
  min-height: 29rem;
  flex: 1;
  place-items: center;
  overflow: hidden;
  padding: 2.1rem 1rem 0;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(42, 157, 244, 0.22), transparent 13rem),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #06111a;
  background-size: auto, 3rem 3rem, 3rem 3rem, auto;
}

.sales-demo__signal {
  position: absolute;
  top: 1rem;
  right: 0.75rem;
  left: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: #54768d;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sales-demo__signal span {
  padding: 0.3rem 0.42rem;
  border: 1px solid rgba(86, 184, 255, 0.13);
  border-radius: 999px;
  background: rgba(6, 17, 26, 0.75);
}

.sales-phone {
  position: relative;
  width: min(15.6rem, 88%);
  min-height: 27rem;
  padding: 1.25rem 0.85rem 1rem;
  color: #17212a;
  border: 0.38rem solid #11181f;
  border-bottom-width: 0;
  border-radius: 2rem 2rem 0 0;
  background: #f5f8fa;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.38), 0 0 2.5rem rgba(62, 166, 225, 0.14);
}

.sales-phone__speaker {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  width: 2.6rem;
  height: 0.24rem;
  border-radius: 999px;
  background: #27313a;
  transform: translateX(-50%);
}

.sales-phone__top,
.sales-phone__customer > div,
.sales-phone__balance,
.sales-phone__links span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sales-phone__top {
  color: #6e7a84;
  font-size: 0.42rem;
}

.sales-phone__top strong {
  color: #17212a;
  font-size: 0.49rem;
  letter-spacing: 0.14em;
}

.sales-phone__customer {
  margin-top: 1.35rem;
}

.sales-phone__customer > small,
.sales-phone__balance small {
  color: #8b98a3;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.sales-phone__customer > div {
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.sales-phone__customer > div > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #fff;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #18364c, #2a9df4);
  font-size: 0.57rem;
  font-weight: 800;
}

.sales-phone__customer strong {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 0.8rem;
}

.sales-phone__customer strong small {
  color: #84909a;
  font-size: 0.5rem;
  font-weight: 550;
}

.sales-phone__balance {
  gap: 0.5rem;
  margin-top: 1rem;
}

.sales-phone__balance > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 0.7rem;
  border: 1px solid #dde5eb;
  border-radius: 0.55rem;
  background: #fff;
}

.sales-phone__balance strong {
  margin-top: 0.22rem;
  font-size: 0.68rem;
}

.sales-phone__links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.sales-phone__links span {
  min-height: 2.2rem;
  padding: 0 0.65rem;
  border: 1px solid #e2e8ed;
  border-radius: 0.45rem;
  background: #fff;
  font-size: 0.58rem;
  font-weight: 650;
}

.sales-phone__links b {
  color: #58819d;
  font-size: 0.5rem;
}

.sales-phone__action {
  display: grid;
  min-height: 2.45rem;
  place-items: center;
  margin-top: 0.75rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #167ebd;
  font-size: 0.62rem;
  font-weight: 750;
  box-shadow: 0 0.75rem 1.5rem rgba(22, 126, 189, 0.2);
}

.sales-phone__home {
  width: 3.2rem;
  height: 0.22rem;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: #b7c2ca;
}

.solution-window--bi {
  padding: 1rem;
  background: linear-gradient(145deg, #07111a, #0a1823 72%, #0b2130);
}

.bi-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bi-toolbar > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.bi-toolbar > div > span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: #07111a;
  border-radius: 0.3rem;
  background: #5fc7ea;
  font-size: 0.65rem;
  font-weight: 900;
}

.bi-toolbar strong {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
}

.bi-toolbar strong small,
.bi-toolbar > span {
  color: #698397;
  font-size: 0.44rem;
  font-weight: 700;
}

.bi-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.bi-kpis > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.38rem;
  background: rgba(255, 255, 255, 0.025);
}

.bi-kpis span {
  color: #7690a3;
  font-size: 0.49rem;
}

.bi-kpis strong {
  margin-top: 0.24rem;
  color: #f0f5f8;
  font-size: 0.93rem;
}

.bi-kpis small {
  color: #68d8ce;
  font-size: 0.46rem;
}

.bi-content {
  display: grid;
  flex: 1;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.bi-chart,
.bi-products {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.018);
}

.bi-chart > div:first-child,
.bi-products > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.bi-chart > div:first-child strong,
.bi-products > div strong {
  color: #bfcdd7;
  font-size: 0.56rem;
}

.bi-chart > div:first-child span,
.bi-products > div small {
  color: #648096;
  font-size: 0.46rem;
}

.bi-chart svg {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  overflow: visible;
}

.bi-chart__grid line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.bi-chart__area {
  fill: url(#solutions-chart-fill);
}

.bi-chart__line {
  fill: none;
  stroke: #57b9e8;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.bi-chart__points circle {
  fill: #6ddbd2;
  stroke: #0a1823;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.bi-chart__months {
  display: flex;
  justify-content: space-between;
  color: #526d82;
  font-size: 0.38rem;
  font-weight: 750;
}

.bi-products ol {
  display: grid;
  gap: 0.78rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bi-products li {
  display: grid;
  grid-template-columns: auto minmax(3.5rem, 0.75fr) minmax(2rem, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
  color: #607b90;
  font-size: 0.43rem;
}

.bi-products li strong {
  overflow: hidden;
  color: #9cb0c0;
  font-size: 0.49rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bi-products li i {
  position: relative;
  height: 0.2rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bi-products li i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #238fcd, #69d9cf);
}

/* Process */
.process {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 50% 4%, rgba(42, 157, 244, 0.15), transparent 31rem),
    linear-gradient(145deg, #05070b 0%, #08101a 55%, #091724 100%);
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  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: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.process::after {
  position: absolute;
  top: -22rem;
  left: 50%;
  width: 44rem;
  height: 44rem;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(86, 184, 255, 0.018), 0 0 0 14rem rgba(86, 184, 255, 0.01);
  transform: translateX(-50%);
  pointer-events: none;
}

.process .site-container {
  position: relative;
  z-index: 1;
}

.process__header {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.process__header h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.process__intro {
  max-width: 41rem;
}

.process__intro > p {
  margin: 0;
  color: #9babb9;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.process__route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: #668094;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process__route i {
  position: relative;
  height: 1px;
  flex: 1;
  overflow: visible;
  background: linear-gradient(90deg, #27465d, #58c4e8);
}

.process__route i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0.4rem;
  height: 0.4rem;
  content: "";
  border-top: 1px solid #58c4e8;
  border-right: 1px solid #58c4e8;
  transform: translateY(-50%) rotate(45deg);
}

.process__route strong {
  color: #7adbd3;
  font-weight: 800;
}

.process__steps {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.process__steps::before {
  position: absolute;
  z-index: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, #318fc1, #67ddd3);
  opacity: 0.55;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 0.9rem;
}

.process-step__marker {
  position: relative;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: #78dcd4;
  border: 1px solid rgba(86, 184, 255, 0.38);
  border-radius: 50%;
  background: #09141e;
  box-shadow: 0 0 0 0.35rem rgba(8, 19, 29, 0.9), 0 0 1.5rem rgba(42, 157, 244, 0.1);
}

.process-step__marker b {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process-step__marker i {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0.9rem;
  height: 1px;
  background: rgba(86, 184, 255, 0.26);
}

.process-step article {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.14);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.process-step article:hover {
  border-color: rgba(86, 184, 255, 0.28);
  background: rgba(19, 60, 87, 0.18);
  transform: translateY(-0.15rem);
}

.process-step--featured article {
  border-color: rgba(86, 184, 255, 0.3);
  background:
    radial-gradient(circle at 90% 0%, rgba(86, 184, 255, 0.12), transparent 9rem),
    rgba(16, 45, 64, 0.3);
}

.process-step--featured .process-step__marker {
  color: #06121a;
  border-color: #69d9cf;
  background: #69d9cf;
  box-shadow: 0 0 0 0.35rem rgba(8, 19, 29, 0.9), 0 0 1.7rem rgba(105, 217, 207, 0.28);
}

.process-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.process-step__top > span {
  color: #628198;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-step__top svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: #4aa8d4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-step h3 {
  margin: 1.5rem 0 0;
  color: var(--color-white);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.process-step p {
  margin: 0.85rem 0 0;
  color: #91a2b1;
  font-size: 0.88rem;
  line-height: 1.68;
}

.process-step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.process-step ul > li {
  padding: 0.34rem 0.5rem;
  color: #8298a9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process__closing {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 54rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0 auto;
}

.process__closing > span {
  width: 2.75rem;
  height: 1px;
  flex: 0 0 auto;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, #2a9df4, #69e6dc);
}

.process__closing p {
  margin: 0;
  color: #b2c0cb;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 580;
  line-height: 1.55;
  text-wrap: balance;
}

/* Why Aunexo */
.why-aunexo {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(42, 157, 244, 0.055) 46.05%, transparent 46.2%),
    linear-gradient(30deg, transparent 0 67%, rgba(5, 7, 11, 0.04) 67.05%, transparent 67.2%),
    #f5f7fa;
}

.why-aunexo::before {
  position: absolute;
  top: -12rem;
  right: -14rem;
  width: 36rem;
  height: 36rem;
  content: "";
  border: 1px solid rgba(42, 157, 244, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(42, 157, 244, 0.018), 0 0 0 10rem rgba(42, 157, 244, 0.012);
  pointer-events: none;
}

.why-aunexo .site-container {
  position: relative;
  z-index: 1;
}

.why-aunexo__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.why-aunexo__header h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.45rem, 5.4vw, 4.85rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.why-aunexo__header h2 > span {
  display: block;
  text-wrap: balance;
}

.why-aunexo__header h2 > span + span {
  margin-top: 0.12em;
  color: #17374b;
}

.why-aunexo__intro {
  max-width: 41rem;
}

.why-aunexo__intro p {
  margin: 0;
  color: #526170;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.78;
}

.why-aunexo__intro > span {
  display: block;
  margin-top: 1.25rem;
  color: #73828f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.why-aunexo__grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(5, 7, 11, 0.09);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.5rem 4rem rgba(23, 42, 59, 0.055);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.why-card:hover {
  border-color: rgba(42, 157, 244, 0.22);
  box-shadow: 0 1.8rem 4.5rem rgba(23, 42, 59, 0.085);
  transform: translateY(-0.18rem);
}

.why-card__number {
  color: #4487ad;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.why-card > p:first-of-type,
.why-card__copy > p:first-of-type,
.why-card--evolution > div > p:first-of-type {
  margin: 1.2rem 0 0;
  color: #7a8996;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-card h3 {
  margin: 0.45rem 0 0;
  color: #101820;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 680;
  letter-spacing: -0.04em;
}

.why-card > p:last-of-type,
.why-card__copy > p:last-of-type,
.why-card--evolution > div > p:last-of-type {
  margin: 0.9rem 0 0;
  color: #65727e;
  font-size: 0.9rem;
  line-height: 1.7;
}

.why-card__icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: 1.4rem;
  color: #2587bd;
  border: 1px solid rgba(42, 157, 244, 0.16);
  border-radius: 0.55rem;
  background: rgba(42, 157, 244, 0.06);
}

.why-card__icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.why-card--custom {
  display: grid;
  gap: 2rem;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 76% 48%, rgba(42, 157, 244, 0.18), transparent 15rem),
    linear-gradient(140deg, #07111a, #0a1c29);
  box-shadow: 0 1.8rem 5rem rgba(8, 22, 34, 0.18);
}

.why-card--custom .why-card__number {
  color: #69d9cf;
}

.why-card--custom .why-card__copy > p:first-of-type {
  color: #6f91a9;
}

.why-card--custom h3 {
  color: var(--color-white);
}

.why-card--custom .why-card__copy > p:last-of-type {
  color: #a7b7c3;
}

.why-orbit {
  position: relative;
  display: grid;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto 1.25rem;
}

.why-orbit__ring {
  position: absolute;
  border: 1px solid rgba(86, 184, 255, 0.16);
  border-radius: 50%;
}

.why-orbit__ring--outer {
  inset: 4%;
}

.why-orbit__ring--inner {
  inset: 22%;
  border-style: dashed;
}

.why-orbit__core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 7rem;
  height: 7rem;
  place-content: center;
  color: #ecf8fd;
  border: 1px solid rgba(105, 217, 207, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 112, 151, 0.32), rgba(7, 17, 26, 0.95));
  box-shadow: 0 0 2.6rem rgba(42, 157, 244, 0.17);
  text-align: center;
}

.why-orbit__core small {
  color: #7192a8;
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.why-orbit__core strong {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.why-orbit__node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.46rem;
  color: #8eb1c6;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: #0b1823;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.why-orbit__node--one { top: 4%; left: 50%; transform: translate(-50%, -50%); }
.why-orbit__node--two { top: 50%; left: 96%; transform: translate(-50%, -50%); }
.why-orbit__node--three { top: 96%; left: 50%; transform: translate(-50%, -50%); }
.why-orbit__node--four { top: 50%; left: 4%; transform: translate(-50%, -50%); }

.why-orbit__caption {
  position: absolute;
  right: 0;
  bottom: -1rem;
  left: 0;
  color: #5d8197;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
}

.why-bridge,
.why-channel,
.why-automation {
  display: flex;
  min-width: 0;
  align-items: center;
  margin-top: 1.6rem;
}

.why-bridge {
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #e2e9ee;
  border-radius: 0.5rem;
  background: #f8fafb;
}

.why-bridge span,
.why-bridge i {
  display: grid;
  min-height: 2rem;
  place-items: center;
  font-size: 0.5rem;
  font-weight: 800;
  font-style: normal;
}

.why-bridge span {
  min-width: 3.4rem;
  color: #50616f;
  border: 1px solid #dce5eb;
  border-radius: 0.35rem;
  background: #fff;
}

.why-bridge i {
  position: relative;
  flex: 1;
  color: #137caf;
}

.why-bridge i::before,
.why-bridge i::after {
  position: absolute;
  top: 50%;
  width: 18%;
  height: 1px;
  content: "";
  background: #60bee3;
}

.why-bridge i::before { left: 0; }
.why-bridge i::after { right: 0; }

.why-channel {
  justify-content: space-between;
  color: #5a7080;
  font-size: 0.5rem;
  font-weight: 800;
}

.why-channel span {
  padding: 0.42rem 0.5rem;
  border: 1px solid #dce6ec;
  border-radius: 0.35rem;
  background: #f8fafb;
}

.why-channel i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, #b6c6d0, #3da5d5, #b6c6d0);
}

.why-data {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.65rem;
}

.why-data i {
  position: relative;
  height: 0.36rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e3eaef;
}

.why-data i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--size);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #2796cf, #65d9d0);
}

.why-automation {
  justify-content: space-between;
  gap: 0.35rem;
  color: #758693;
  font-size: 0.45rem;
  font-weight: 800;
}

.why-automation span {
  overflow: hidden;
  padding: 0.42rem 0.45rem;
  border: 1px solid #dce6ec;
  border-radius: 0.34rem;
  background: #f8fafb;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.why-automation i {
  color: #2796cf;
  font-size: 0.75rem;
  font-weight: 750;
  font-style: normal;
}

.why-card--evolution {
  display: grid;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 85% 50%, rgba(42, 157, 244, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.9);
}

.why-growth {
  display: grid;
  grid-template-columns: auto minmax(1rem, 1fr) auto minmax(1rem, 1fr) auto minmax(1rem, 1fr) auto;
  align-items: center;
}

.why-growth > span {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  color: #83919c;
  font-size: 0.48rem;
  font-weight: 800;
}

.why-growth > span i {
  width: 0.68rem;
  height: 0.68rem;
  border: 2px solid #f5f7fa;
  border-radius: 50%;
  background: #92a7b6;
  box-shadow: 0 0 0 1px #92a7b6;
}

.why-growth > b {
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #92a7b6, #58c9dc);
}

.why-growth .is-current {
  color: #147cae;
}

.why-growth .is-current i {
  background: #59d0cf;
  box-shadow: 0 0 0 1px #32a8c9, 0 0 1rem rgba(50, 168, 201, 0.4);
}

/* FAQ */
.faq {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 38%, rgba(42, 157, 244, 0.13), transparent 28rem),
    linear-gradient(135deg, #05070b 0%, #08111a 58%, #0a1722 100%);
}

.faq::before {
  position: absolute;
  inset: 0;
  content: "";
  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: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.faq::after {
  position: absolute;
  top: 12rem;
  left: -18rem;
  width: 40rem;
  height: 40rem;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(86, 184, 255, 0.016), 0 0 0 12rem rgba(86, 184, 255, 0.01);
  pointer-events: none;
}

.faq .site-container {
  position: relative;
  z-index: 1;
}

.faq__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.faq__header h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.faq__header > p {
  max-width: 40rem;
  margin: 0;
  color: #96a8b6;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.faq__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.faq__guide {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
}

.faq__guide::after {
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 15rem;
  height: 15rem;
  content: "";
  border: 1px solid rgba(86, 184, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(86, 184, 255, 0.02);
  pointer-events: none;
}

.faq__symbol {
  position: relative;
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(86, 184, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 157, 244, 0.16), transparent 68%);
}

.faq__symbol span {
  color: #75d7db;
  font-size: 2.2rem;
  font-weight: 450;
}

.faq__symbol i {
  position: absolute;
  inset: 0.7rem;
  border: 1px dashed rgba(86, 184, 255, 0.2);
  border-radius: 50%;
}

.faq__guide > span {
  color: #6fc9dc;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.faq__guide > p {
  max-width: 26rem;
  margin: 0.8rem 0 0;
  color: #a9b8c4;
  font-size: 1rem;
  line-height: 1.7;
}

.faq__guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.faq__guide li {
  padding: 0.38rem 0.55rem;
  color: #7f94a5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.55rem;
  font-weight: 700;
}

.faq__list {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.faq-item[open] {
  border-bottom-color: rgba(86, 184, 255, 0.24);
  background: linear-gradient(90deg, rgba(42, 157, 244, 0.075), transparent 72%);
}

.faq-item summary {
  display: grid;
  min-height: 5.25rem;
  grid-template-columns: 2rem minmax(0, 1fr) 2.4rem;
  gap: 0.7rem;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary:hover h3,
.faq-item[open] summary h3 {
  color: var(--color-white);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 0.3rem;
}

.faq-item summary > span {
  align-self: start;
  margin-top: 0.33rem;
  color: #55758c;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-item h3 {
  margin: 0;
  color: #b4c1cb;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.35;
  transition: color 220ms ease;
}

.faq-item summary > i {
  position: relative;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item summary > i::before,
.faq-item summary > i::after {
  position: absolute;
  width: 0.72rem;
  height: 1px;
  content: "";
  background: #6fc9dc;
  transition: transform 220ms var(--ease-out);
}

.faq-item summary > i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary > i::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  padding: 0 2.7rem 1.45rem;
  animation: faq-answer-in 260ms var(--ease-out) both;
}

.faq-item__answer p {
  max-width: 52rem;
  margin: 0;
  color: #8fa2b1;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--color-ink);
  background: #f3f6f8;
}

.contact::before {
  position: absolute;
  right: -15rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  content: "";
  border: 1px solid rgba(42, 157, 244, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(42, 157, 244, 0.025), 0 0 0 12rem rgba(42, 157, 244, 0.015);
  pointer-events: none;
}

.contact__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(5, 7, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 11, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.contact .site-container {
  position: relative;
  z-index: 1;
}

.contact__header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact__header h2 {
  max-width: 15ch;
  margin: 0;
  color: #07101a;
  font-size: clamp(2.5rem, 5.6vw, 4.9rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.99;
  text-wrap: balance;
}

.contact__header > p {
  max-width: 42rem;
  margin: 0;
  color: #5f6e7b;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.78;
}

.contact__layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.contact__context,
.contact-form {
  min-width: 0;
  border-radius: 0.8rem;
}

.contact__context {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 8%, rgba(86, 184, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, #07101a, #0b1b29);
  box-shadow: 0 1.5rem 4rem rgba(13, 31, 47, 0.16);
}

.contact__context::before,
.contact__context::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(105, 230, 220, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact__context::before {
  top: -7rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
}

.contact__context::after {
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
}

.contact__signal {
  position: relative;
  display: flex;
  width: 4.5rem;
  height: 4.5rem;
  align-items: end;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.contact__signal span {
  width: 0.23rem;
  border-radius: 999px;
  background: linear-gradient(to top, #2a9df4, #69e6dc);
  box-shadow: 0 0 0.8rem rgba(105, 230, 220, 0.3);
}

.contact__signal span:nth-child(1) { height: 0.65rem; }
.contact__signal span:nth-child(2) { height: 1.2rem; }
.contact__signal span:nth-child(3) { height: 1.75rem; }

.contact__context-kicker {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin: 0;
  color: #72d9de;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.6;
}

.contact__context-copy {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin: 1rem 0 0;
  color: #a7b5c0;
  font-size: 1rem;
  line-height: 1.72;
}

.contact__steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact__steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact__steps li > span {
  padding-top: 0.18rem;
  color: #54758a;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact__steps strong {
  display: block;
  color: #e9f1f7;
  font-size: 0.9rem;
  font-weight: 650;
}

.contact__steps p {
  margin: 0.35rem 0 0;
  color: #7f92a1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact__email {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.15rem 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.contact__email span,
.contact__email strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact__email span {
  color: #748796;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__email strong {
  grid-row: 2;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact__email i {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #69e6dc;
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.contact__email:hover i {
  transform: translate(0.2rem, -0.2rem);
}

.contact-form {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(5, 7, 11, 0.09);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.5rem 4rem rgba(13, 31, 47, 0.08);
  backdrop-filter: blur(10px);
}

.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form__intro {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(5, 7, 11, 0.1);
}

.contact-form__intro span {
  color: #147cae;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-form__intro p {
  margin: 0;
  color: #8995a0;
  font-size: 0.72rem;
}

.contact-form__grid {
  display: grid;
  gap: 1.25rem;
}

.contact-field {
  min-width: 0;
}

.contact-field label {
  display: flex;
  min-height: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  color: #24313c;
  font-size: 0.75rem;
  font-weight: 720;
}

.contact-field label span {
  color: #167dad;
}

.contact-field label small {
  color: #9aa4ad;
  font-size: 0.6rem;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  color: #10202d;
  border: 1px solid #d5dce1;
  border-radius: 0.4rem;
  background: #f9fbfc;
  font: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input {
  min-height: 3.35rem;
  padding: 0.8rem 0.9rem;
}

.contact-field textarea {
  min-height: 10rem;
  padding: 0.9rem;
  line-height: 1.65;
  resize: vertical;
}

.contact-field textarea::placeholder {
  color: #9aa5ae;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: #b5c2cb;
  background: #fff;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #299cd1;
  background: #fff;
  box-shadow: 0 0 0 0.23rem rgba(42, 157, 244, 0.11);
}

.contact-field__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.45rem;
  color: #8d99a3;
  font-size: 0.63rem;
}

.contact-field__error {
  display: block;
  min-height: 1rem;
  margin-top: 0.35rem;
  color: #b63d4a;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.4;
}

.contact-field__error:empty {
  min-height: 0;
  margin-top: 0;
}

.contact-form.was-validated .contact-field input:invalid,
.contact-form.was-validated .contact-field textarea:invalid,
.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #c34c58;
  background: #fffafb;
  box-shadow: 0 0 0 0.2rem rgba(195, 76, 88, 0.08);
}

.contact-form__status {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.5;
}

.contact-form__status.is-success {
  color: #17634e;
  border-color: rgba(24, 131, 96, 0.25);
  background: #edf9f4;
}

.contact-form__status.is-error {
  color: #9b303e;
  border-color: rgba(195, 76, 88, 0.25);
  background: #fff2f4;
}

.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(5, 7, 11, 0.1);
}

.contact-form__footer > p {
  max-width: 24rem;
  margin: 0;
  color: #7d8993;
  font-size: 0.68rem;
  line-height: 1.55;
}

.contact-form__submit {
  width: 100%;
  color: var(--color-white);
  background: #07111a;
  border-color: #07111a;
  box-shadow: 0 0 0 rgba(42, 157, 244, 0);
}

.contact-form__submit:hover {
  color: var(--color-white);
  background: #102838;
  border-color: #102838;
  box-shadow: 0 0.9rem 2.4rem rgba(19, 80, 115, 0.18);
}

.contact-form__submit:hover [data-button-label] {
  transform: none;
}

.contact-form__submit i {
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.contact-form__submit:hover i {
  transform: translate(0.2rem, -0.2rem);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__submit.is-loading i {
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--color-white);
  border-radius: 50%;
  font-size: 0;
  animation: contact-submit-spin 700ms linear infinite;
}

/* Legal pages */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) 0 4.5rem;
  color: var(--color-white);
  background:
    radial-gradient(circle at 83% 28%, rgba(86, 184, 255, 0.13), transparent 28rem),
    linear-gradient(145deg, #05070b 0%, #08111a 62%, #071922 100%);
}

.legal-hero::before,
.legal-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.legal-hero::before {
  top: 22%;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(105, 230, 220, 0.1);
  border-radius: 50%;
}

.legal-hero::after {
  right: 8%;
  bottom: 0;
  width: min(42rem, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105, 230, 220, 0.75), transparent);
}

.legal-hero--cookies {
  background:
    radial-gradient(circle at 83% 28%, rgba(105, 230, 220, 0.12), transparent 28rem),
    linear-gradient(145deg, #05070b 0%, #08111a 58%, #081d20 100%);
}

.legal-hero .site-container {
  position: relative;
  z-index: 1;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(2.75rem, 6vw, 5.5rem);
  color: #98a9b7;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 220ms var(--ease-out);
}

.legal-back:hover {
  color: var(--color-white);
  transform: translateX(-0.2rem);
}

.legal-back span {
  color: var(--color-aqua);
  font-size: 1rem;
}

.legal-hero__grid {
  display: grid;
  gap: 2.5rem;
}

.legal-hero__eyebrow {
  color: #8fa0ad;
}

.legal-hero__eyebrow > span {
  color: #8de9e2;
  border-color: rgba(105, 230, 220, 0.3);
}

.legal-hero__content h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 13vw, 6.8rem);
  font-weight: 625;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.legal-hero__content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #5ebcff, #74e9dd);
  background-clip: text;
  -webkit-background-clip: text;
}

.legal-hero__content > p:last-child {
  max-width: 44rem;
  margin: 1.65rem 0 0;
  color: #aebac5;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
}

.legal-hero__meta {
  align-self: end;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.legal-hero__meta > div {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-hero__meta > div:first-child {
  padding-top: 0;
}

.legal-hero__meta > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-hero__meta span {
  color: #788996;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-hero__meta strong,
.legal-hero__meta a,
.legal-hero__meta button {
  color: #e9f1f6;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-hero__meta a:hover,
.legal-hero__meta button:hover {
  color: #83e7df;
}

.legal-hero__meta button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.legal-hero__meta i {
  color: var(--color-aqua);
  font-style: normal;
}

.legal-content {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background:
    linear-gradient(rgba(5, 7, 11, 0.024) 1px, transparent 1px),
    var(--color-paper);
  background-size: 100% 6.5rem;
}

.legal-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.legal-index {
  padding: 1.15rem;
  border: 1px solid rgba(5, 7, 11, 0.1);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.62);
}

.legal-index > p {
  margin: 0 0 0.8rem;
  color: #71808c;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.legal-index nav {
  display: grid;
}

.legal-index a {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  padding: 0.58rem 0;
  color: #53616d;
  border-bottom: 1px solid rgba(5, 7, 11, 0.07);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, padding-left 200ms var(--ease-out);
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-index a:hover {
  padding-left: 0.25rem;
  color: #087eb8;
}

.legal-index a span {
  color: #188ec5;
  font-size: 0.58rem;
}

.legal-document {
  min-width: 0;
}

.legal-section {
  position: relative;
  padding: 0 0 clamp(3.75rem, 7vw, 6rem);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.legal-section + .legal-section {
  padding-top: clamp(3.75rem, 7vw, 6rem);
  border-top: 1px solid rgba(5, 7, 11, 0.12);
}

.legal-section__number {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1.1rem;
  place-items: center;
  color: #0b82bb;
  border: 1px solid rgba(42, 157, 244, 0.28);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
}

.legal-section h2 {
  max-width: 22ch;
  margin: 0 0 1.5rem;
  color: var(--color-ink);
  font-size: clamp(2rem, 6vw, 3.65rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.legal-section > p {
  max-width: 54rem;
  margin: 0 0 1.15rem;
  color: #4f5d68;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.8;
}

.legal-note {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  max-width: 50rem;
  margin-top: 1.75rem;
  padding: 1rem;
  color: #285264;
  border: 1px solid rgba(42, 157, 244, 0.18);
  border-radius: 0.5rem;
  background: rgba(86, 184, 255, 0.07);
}

.legal-note > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #147dac;
  border: 1px solid rgba(42, 157, 244, 0.25);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.legal-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-cards,
.cookie-policy-categories {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
}

.legal-cards article,
.cookie-policy-category {
  padding: 1.25rem;
  border: 1px solid rgba(5, 7, 11, 0.1);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.74);
}

.legal-cards article > span {
  color: #218ab8;
  font-size: 0.62rem;
  font-weight: 800;
}

.legal-cards h3,
.cookie-policy-category h3 {
  margin: 1rem 0 0.6rem;
  color: #17222c;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.legal-cards p,
.cookie-policy-category p {
  margin: 0;
  color: #66737e;
  font-size: 0.82rem;
  line-height: 1.65;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid rgba(5, 7, 11, 0.12);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1rem 2.5rem rgba(5, 7, 11, 0.04);
  scrollbar-color: #63b9df #e6edf0;
}

.legal-table {
  width: 100%;
  min-width: 47rem;
  border-collapse: collapse;
  color: #4d5b66;
  font-size: 0.79rem;
  line-height: 1.55;
}

.legal-table th,
.legal-table td {
  width: 33.333%;
  padding: 1rem;
  border-right: 1px solid rgba(5, 7, 11, 0.08);
  border-bottom: 1px solid rgba(5, 7, 11, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  color: #687681;
  background: rgba(5, 7, 11, 0.035);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-table td:first-child {
  color: #17242e;
  font-weight: 700;
}

.legal-table code {
  display: block;
  width: fit-content;
  padding: 0.18rem 0.35rem;
  color: #0c668f;
  border-radius: 0.25rem;
  background: rgba(42, 157, 244, 0.08);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.legal-table td small {
  display: block;
  margin-top: 0.45rem;
  color: #7b8892;
  font-size: 0.67rem;
  font-weight: 550;
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 46rem;
  margin: 1.75rem 0;
}

.legal-rights-grid span {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  color: #2b3b47;
  border: 1px solid rgba(5, 7, 11, 0.09);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-rights-grid span::before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-aqua));
  transform: translateY(-50%);
}

.legal-section--contact {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(5, 7, 11, 0.1) !important;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(5, 7, 11, 0.055);
}

.legal-section--contact + .legal-next {
  margin-top: 1.25rem;
}

.legal-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.75rem;
}

.legal-external-link {
  color: #176e96;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-external-link:hover {
  color: #0b92cf;
}

.legal-update-copy {
  margin-top: 1.75rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(5, 7, 11, 0.08);
  font-size: 0.82rem !important;
}

.legal-next {
  display: grid;
  gap: 0.5rem;
  padding: 1.3rem;
  color: #eaf3f8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #07111a, #0a2028);
}

.legal-next > span {
  color: #76909e;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-next a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.legal-next strong {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.legal-next i {
  color: var(--color-aqua);
  font-size: 1.35rem;
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.legal-next a:hover i {
  transform: translateX(0.3rem);
}

.cookie-policy-category header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cookie-policy-category header > span {
  color: #218ab8;
  font-size: 0.62rem;
  font-weight: 800;
}

.cookie-policy-category header i,
.legal-status {
  color: #71808a;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cookie-policy-category header i::before,
.legal-status::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.35rem;
  content: "";
  border-radius: 50%;
  background: #9ba6ad;
}

.cookie-policy-category header i.is-configured,
.legal-status.is-configured {
  color: #197a70;
}

.cookie-policy-category header i.is-configured::before,
.legal-status.is-configured::before {
  background: #38baa9;
  box-shadow: 0 0 0 0.2rem rgba(56, 186, 169, 0.1);
}

.cookie-policy-category--necessary {
  color: #eaf5f8;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #09141d, #0a2228);
}

.cookie-policy-category--necessary h3 {
  color: var(--color-white);
}

.cookie-policy-category--necessary p {
  color: #9eb0ba;
}

.cookie-policy-category--necessary header i {
  color: #79dcd3;
}

.cookie-policy-category--necessary header i::before {
  background: #69e6dc;
  box-shadow: 0 0 0 0.2rem rgba(105, 230, 220, 0.1);
}

.legal-cookie-button {
  margin: 0.75rem 0 1.75rem;
}

@media (min-width: 48rem) {
  .legal-hero {
    padding-bottom: 5.5rem;
  }

  .legal-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .legal-hero__meta > div,
  .legal-hero__meta > div:first-child,
  .legal-hero__meta > div:last-child {
    padding: 0;
    border-bottom: 0;
  }

  .legal-hero__meta > div + div {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .legal-index nav,
  .legal-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.2rem;
  }

  .legal-cards {
    gap: 0.75rem;
  }

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

  .legal-table th,
  .legal-table td {
    padding: 1.15rem;
  }
}

@media (min-width: 62rem) {
  .legal-layout {
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .legal-index {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
  }

  .legal-index nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .legal-section--contact {
    padding: clamp(2.5rem, 4vw, 3.5rem);
  }

  .cookie-policy-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 75rem) {
  .legal-hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 6.5rem;
  }

  .legal-hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
    gap: clamp(4rem, 9vw, 9rem);
    align-items: end;
  }

  .legal-hero__meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 1.5rem;
  }

  .legal-hero__meta > div,
  .legal-hero__meta > div:first-child,
  .legal-hero__meta > div:last-child {
    padding: 0.85rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .legal-hero__meta > div:first-child {
    padding-top: 0;
  }

  .legal-hero__meta > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 16rem minmax(0, 1fr);
  }

  .legal-document {
    max-width: 65rem;
  }
}

@media (max-width: 22.5rem) {
  .legal-hero {
    padding-bottom: 3.5rem;
  }

  .legal-hero__content h1 {
    font-size: 2.65rem;
  }

  .legal-hero__meta,
  .legal-index,
  .legal-cards article,
  .cookie-policy-category,
  .legal-section--contact,
  .legal-next {
    padding: 1rem;
  }

  .legal-rights-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Cookie consent */
body.cookie-preferences-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-preferences[hidden],
.cookie-toast[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 1280;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.65rem;
  opacity: 0;
  transform: translateY(calc(100% + 1rem));
  transition: opacity 260ms ease, transform 420ms var(--ease-out);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__panel {
  position: relative;
  display: grid;
  max-width: 1500px;
  gap: 1.25rem;
  margin-inline: auto;
  padding: 1.25rem;
  overflow: hidden;
  color: var(--color-white);
  border: 1px solid rgba(128, 202, 250, 0.18);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 4% 20%, rgba(86, 184, 255, 0.16), transparent 15rem),
    linear-gradient(125deg, rgba(6, 11, 17, 0.98), rgba(9, 24, 35, 0.98));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
}

.cookie-banner__panel::after {
  position: absolute;
  top: -8rem;
  right: 17%;
  width: 18rem;
  height: 18rem;
  content: "";
  border: 1px solid rgba(105, 230, 220, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(105, 230, 220, 0.012);
  pointer-events: none;
}

.cookie-banner__mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.35rem;
  height: 4.35rem;
  grid-template-columns: repeat(3, 0.38rem);
  gap: 0.25rem;
  place-content: center;
  align-items: end;
  border: 1px solid rgba(105, 230, 220, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 2rem rgba(42, 157, 244, 0.08) inset;
}

.cookie-banner__mark span {
  display: block;
  width: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(to top, #2a9df4, #69e6dc);
  box-shadow: 0 0 0.7rem rgba(105, 230, 220, 0.32);
}

.cookie-banner__mark span:nth-child(1) { height: 0.75rem; }
.cookie-banner__mark span:nth-child(2) { height: 1.25rem; }
.cookie-banner__mark span:nth-child(3) { height: 1.8rem; }

.cookie-banner__mark i {
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(86, 184, 255, 0.13);
  border-radius: 50%;
}

.cookie-banner__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cookie-banner__kicker {
  color: #69d9df;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cookie-banner__content h2 {
  max-width: 30rem;
  margin: 0.45rem 0 0;
  color: var(--color-white);
  font-size: clamp(1.25rem, 5.4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cookie-banner__content p {
  max-width: 46rem;
  margin: 0.7rem 0 0;
  color: #93a5b3;
  font-size: 0.78rem;
  line-height: 1.65;
}

.cookie-banner__actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: center;
}

.cookie-action {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.4rem;
  background: transparent;
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

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

.cookie-action:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.cookie-action--light {
  color: #e9f0f5;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.cookie-action--light:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-action--accent {
  color: #071018;
  border-color: var(--color-white);
  background: var(--color-white);
}

.cookie-action--accent:hover {
  border-color: #ddf6f6;
  background: #ddf6f6;
}

.cookie-action--link {
  min-height: 2.75rem;
  grid-column: 1 / -1;
  justify-content: flex-start;
  padding: 0.35rem 0.15rem;
  color: #8ca0af;
  border-color: transparent;
  background: transparent;
  text-align: left;
}

.cookie-action--link:hover {
  color: var(--color-white);
  transform: none;
}

.cookie-action--link span {
  color: #69d9df;
}

.cookie-preferences {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 0.65rem;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.cookie-preferences.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-preferences__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 8, 0.72);
  backdrop-filter: blur(10px);
}

.cookie-preferences__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  max-height: calc(100svh - 1.3rem);
  margin-inline: auto;
  padding: 1.25rem;
  overflow-y: auto;
  color: var(--color-white);
  border: 1px solid rgba(128, 202, 250, 0.18);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 94% 0, rgba(86, 184, 255, 0.13), transparent 20rem),
    linear-gradient(145deg, #071019, #0b1b28);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.55);
  transform: translateY(1.5rem) scale(0.985);
  transition: transform 360ms var(--ease-out);
}

.cookie-preferences.is-visible .cookie-preferences__panel {
  transform: translateY(0) scale(1);
}

.cookie-preferences__panel:focus {
  outline: none;
}

.cookie-preferences__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-preferences__heading > span {
  color: #69d9df;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cookie-preferences__heading h2 {
  max-width: 17ch;
  margin: 0.55rem 0 0;
  color: var(--color-white);
  font-size: clamp(1.55rem, 7vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.cookie-preferences__close {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-preferences__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: #c6d1d9;
}

.cookie-preferences__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cookie-preferences__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cookie-preferences__close:hover {
  border-color: rgba(105, 230, 220, 0.36);
  background: rgba(105, 230, 220, 0.06);
}

.cookie-preferences__description {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: #91a3b1;
  font-size: 0.79rem;
  line-height: 1.65;
}

.cookie-categories {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cookie-category {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 1.7rem minmax(0, 1fr) auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

.cookie-category:hover {
  border-color: rgba(86, 184, 255, 0.24);
  background: rgba(86, 184, 255, 0.045);
  transform: translateY(-1px);
}

.cookie-category:has(input:focus-visible) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.cookie-category input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-category__index {
  align-self: start;
  padding-top: 0.2rem;
  color: #52758b;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cookie-category__content {
  min-width: 0;
}

.cookie-category__content strong,
.cookie-category__content small {
  display: block;
}

.cookie-category__content strong {
  color: #edf4f8;
  font-size: 0.88rem;
  font-weight: 680;
}

.cookie-category__content small {
  max-width: 36rem;
  margin-top: 0.3rem;
  color: #8195a4;
  font-size: 0.69rem;
  line-height: 1.52;
}

.cookie-switch {
  position: relative;
  display: block;
  width: 2.65rem;
  height: 1.45rem;
  grid-row: 1 / span 2;
  grid-column: 3;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.cookie-switch i {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #8294a1;
  box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.25);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 220ms var(--ease-out);
}

.cookie-category input:checked ~ .cookie-switch {
  border-color: rgba(105, 230, 220, 0.44);
  background: rgba(105, 230, 220, 0.16);
}

.cookie-category input:checked ~ .cookie-switch i {
  background: #69e6dc;
  box-shadow: 0 0 0.8rem rgba(105, 230, 220, 0.38);
  transform: translateX(1.15rem);
}

.cookie-category--locked {
  cursor: default;
}

.cookie-category--locked:hover {
  transform: none;
}

.cookie-category__state {
  grid-column: 2;
  color: #69cbd5;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-preferences__footer {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-action--save {
  color: #dce7ee;
  border-color: rgba(105, 230, 220, 0.24);
  background: rgba(105, 230, 220, 0.055);
}

.cookie-action--save:hover {
  color: var(--color-white);
  border-color: rgba(105, 230, 220, 0.48);
  background: rgba(105, 230, 220, 0.1);
}

.cookie-toast {
  position: fixed;
  z-index: 1320;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: grid;
  grid-template-columns: 1.9rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  color: #dff8f3;
  border: 1px solid rgba(105, 230, 220, 0.23);
  border-radius: 0.5rem;
  background: rgba(7, 24, 29, 0.96);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
  pointer-events: none;
  backdrop-filter: blur(16px);
}

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

.cookie-toast i {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 1px solid rgba(105, 230, 220, 0.3);
  border-radius: 50%;
  color: #69e6dc;
  font-size: 0.75rem;
  font-style: normal;
}

.cookie-toast span {
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  color: #8f9aa8;
  background: var(--color-ink);
  border-top: 1px solid var(--color-line);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__top {
  padding: 3.5rem 0 2.5rem;
}

.brand-mark--footer {
  width: 12.5rem;
}

.site-footer__top p {
  max-width: 31rem;
  margin: 0;
  font-size: 1rem;
}

.site-footer__bottom {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.8rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.3rem;
}

.site-footer .site-footer__links a {
  color: #aebbc6;
  text-decoration: none;
}

.site-footer .site-footer__links button {
  padding: 0;
  color: #aebbc6;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}

.site-footer .site-footer__links a:hover,
.site-footer .site-footer__links button:hover {
  color: var(--color-white);
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-0.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes contact-submit-spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-content-in {
  from { opacity: 0.72; transform: translateY(0.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity: 0.58; transform: translateY(0.75rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes data-flow {
  to { stroke-dashoffset: -110; }
}

@keyframes ecosystem-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes ecosystem-sweep {
  to { transform: rotate(360deg); }
}

@keyframes ecosystem-stream {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes ecosystem-core-spin {
  to { transform: rotate(-360deg); }
}

@keyframes ecosystem-core-wave {
  0% { opacity: 0; transform: scale(0.82); }
  28% { opacity: 0.46; }
  78%, 100% { opacity: 0; transform: scale(1.12); }
}

@keyframes ecosystem-endpoint {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}

@keyframes ecosystem-node-signal {
  0%, 100% { opacity: 0.62; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes signal-pulse {
  0% { opacity: 0.7; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.7); }
}

@keyframes scroll-line {
  from { transform: translateX(-105%); }
  to { transform: translateX(105%); }
}

@media (min-width: 30rem) {
  .site-container {
    width: min(100% - 3rem, var(--container-width));
  }

  .cookie-preferences {
    align-items: center;
    padding: 1rem;
  }

  .cookie-toast {
    right: 1rem;
    bottom: 1rem;
    left: auto;
    width: min(25rem, calc(100% - 2rem));
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 48rem) {
  .hero {
    padding-bottom: 6.5rem;
  }

  .hero__title {
    font-size: clamp(3.9rem, 9vw, 5.9rem);
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer__top {
    padding-block: 4rem;
  }

  .faq__guide {
    padding: 2rem;
  }

  .faq-item summary {
    min-height: 6rem;
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.75rem;
    gap: 1.2rem;
    padding: 1.25rem 1rem;
  }

  .faq-item__answer {
    padding: 0 4.75rem 1.75rem;
  }

  .contact__context,
  .contact-form {
    padding: 2rem;
  }

  .contact-form__intro {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.15rem;
  }

  .contact-field--wide {
    grid-column: 1 / -1;
  }

  .contact-form__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-form__submit {
    width: auto;
    flex: 0 0 auto;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner__panel,
  .cookie-preferences__panel {
    padding: 2rem;
  }

  .cookie-category {
    padding: 1.15rem 1.25rem;
  }

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

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

  .problem-card--last {
    grid-column: 1 / -1;
  }

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

  .mobile-stage {
    min-height: 42rem;
  }

  .mobile-phone {
    top: 3rem;
    left: 2.5rem;
    width: 13.5rem;
    transform: rotate(-2deg);
  }

  .mobile-tablet {
    position: absolute;
    z-index: 2;
    top: 4.25rem;
    right: 2rem;
    display: grid;
    width: min(72%, 32rem);
    height: 24.5rem;
    grid-template-columns: 7.5rem 1fr;
    overflow: hidden;
    border: 0.45rem solid #0b1016;
    border-radius: 1.25rem;
    background: #f2f5f7;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.34);
    transform: rotate(1.3deg);
  }

  .mobile-tablet__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 1.25rem 0.75rem;
    color: #8493a1;
    background: #0b1722;
    font-size: 0.54rem;
  }

  .mobile-tablet__sidebar strong {
    margin-bottom: 1rem;
    color: #e8f5fd;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .mobile-tablet__sidebar span {
    padding: 0.48rem 0.55rem;
    border-radius: 0.35rem;
  }

  .mobile-tablet__sidebar span.is-active {
    color: #dff3ff;
    background: rgba(64, 176, 232, 0.14);
  }

  .mobile-tablet__workspace {
    min-width: 0;
    padding: 1.15rem;
  }

  .mobile-tablet__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-tablet__toolbar small,
  .mobile-tablet__toolbar strong {
    display: block;
  }

  .mobile-tablet__toolbar small {
    color: #8a98a6;
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }

  .mobile-tablet__toolbar strong {
    margin-top: 0.2rem;
    color: #17232e;
    font-size: 0.72rem;
  }

  .mobile-tablet__toolbar > span {
    color: #6c7b89;
    font-size: 0.45rem;
  }

  .mobile-tablet__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .mobile-tablet__metrics > div {
    padding: 0.65rem;
    border: 1px solid #dde5eb;
    border-radius: 0.45rem;
    background: #fff;
  }

  .mobile-tablet__metrics span,
  .mobile-tablet__metrics strong,
  .mobile-tablet__metrics i {
    display: block;
  }

  .mobile-tablet__metrics span {
    color: #7f8d9a;
    font-size: 0.44rem;
  }

  .mobile-tablet__metrics strong {
    margin-top: 0.25rem;
    color: #18232e;
    font-size: 0.9rem;
  }

  .mobile-tablet__metrics i {
    margin-top: 0.2rem;
    color: #279c78;
    font-size: 0.42rem;
    font-style: normal;
  }

  .mobile-tablet__body {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 0.55rem;
    margin-top: 0.55rem;
  }

  .mobile-tablet__chart,
  .mobile-tablet__orders {
    padding: 0.7rem;
    border: 1px solid #dde5eb;
    border-radius: 0.45rem;
    background: #fff;
  }

  .mobile-tablet__chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7c8996;
    font-size: 0.43rem;
  }

  .mobile-tablet__chart-head strong {
    color: #1e2a35;
    font-size: 0.52rem;
  }

  .mobile-tablet__bars {
    height: 5rem;
    gap: 0.28rem;
  }

  .mobile-tablet__orders > span {
    color: #7d8b98;
    font-size: 0.43rem;
  }

  .mobile-tablet__orders > div {
    display: grid;
    grid-template-columns: 0.35rem 1fr auto;
    gap: 0.35rem;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #e7ecef;
    color: #23303c;
    font-size: 0.46rem;
  }

  .mobile-tablet__orders i {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: #3db1dd;
  }

  .mobile-tablet__orders small {
    color: #758391;
  }

  .mobile-flow {
    top: auto;
    right: 2rem;
    bottom: 2rem;
    left: auto;
    width: min(65%, 29rem);
    padding: 1rem;
  }

  .mobile-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
  }

  .nexo-map {
    padding: 2.5rem;
  }

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

  .nexo-explainer {
    grid-template-columns: minmax(7.5rem, 0.3fr) minmax(8rem, 0.35fr) minmax(0, 1.35fr);
  }

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

  .nexo-relations article {
    padding: 1.6rem 1.5rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 0;
  }

  .nexo-relations article:first-child {
    padding-left: 0;
  }

  .nexo-relations article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .solution-demo {
    padding: 1.75rem;
  }

  .demo-kpis,
  .bi-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .crm-pipeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .bi-content {
    grid-template-columns: minmax(0, 1.25fr) minmax(10rem, 0.75fr);
  }

  .process-step {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 1.2rem;
  }

  .process-step__marker {
    width: 2.75rem;
    height: 2.75rem;
  }

  .process__steps::before {
    left: 1.37rem;
  }

  .process-step article {
    padding: 1.6rem;
  }

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

  .why-card--custom,
  .why-card--evolution {
    grid-column: 1 / -1;
  }

  .why-card--custom {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.85fr);
    align-items: center;
  }

  .why-card--evolution {
    grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  }
}

@media (min-width: 62rem) {
  .hero {
    padding-top: calc(var(--header-height) + 2.75rem);
    padding-bottom: 5.25rem;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1.16fr) minmax(25rem, 0.84fr);
    gap: clamp(2rem, 3vw, 4rem);
  }

  .hero__title {
    font-size: clamp(4rem, 5.65vw, 5.5rem);
  }

  .hero__visual {
    max-width: 41rem;
  }

  .hero__scroll {
    display: flex;
  }

  .nexo-map {
    display: block;
    min-height: 38.75rem;
    padding: 0;
  }

  .nexo-map__connections {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .nexo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10.5rem;
    height: 10.5rem;
    transform: translate(-50%, -50%);
  }

  .nexo-map__nodes {
    display: block;
  }

  .nexo-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 8.75rem;
    transform: translate(-50%, -50%);
  }

  .nexo-node:hover,
  .nexo-node:focus-visible,
  .nexo-node.is-active {
    transform: translate(-50%, calc(-50% - 0.15rem));
  }
}

@media (min-width: 75rem) {
  .site-header .navbar-collapse {
    flex-grow: 1;
  }

  .site-navigation__inner {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.25rem, 2.2vw, 2.75rem);
    padding: 0;
  }

  .site-navigation__links {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.15rem, 0.8vw, 0.75rem);
  }

  .site-navigation__links .nav-link {
    display: grid;
    min-height: var(--header-height);
    place-items: center;
    padding-inline: 0.42rem;
    font-size: 0.84rem;
  }

  .site-navigation__links .nav-link::after {
    position: absolute;
    right: 0.42rem;
    bottom: 1.25rem;
    left: 0.42rem;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--color-accent), var(--color-aqua));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease-out);
  }

  .site-navigation__links .nav-link:hover::after,
  .site-navigation__links .nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-navigation__actions {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.85rem, 1.5vw, 1.5rem);
  }

  .button--header {
    white-space: nowrap;
  }

  .problems__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

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

  .services__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

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

  .mobile-showcase__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(34rem, 1.18fr);
  }

  .mobile-benefits {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .mobile-benefit {
    display: block;
    padding: 1.6rem clamp(1rem, 1.7vw, 1.6rem) 0;
    border-right: 1px solid rgba(5, 7, 11, 0.1);
    border-bottom: 0;
  }

  .mobile-benefit:first-child {
    padding-left: 0;
  }

  .mobile-benefit:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .mobile-benefit__icon {
    margin-bottom: 1.25rem;
  }

  .problem-card {
    grid-column: span 4;
  }

  .problem-card--half,
  .problem-card--last {
    grid-column: span 6;
  }

  .solutions__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

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

  .solution-demo--crm,
  .solution-demo--bi {
    grid-column: span 7;
  }

  .solution-demo--management,
  .solution-demo--sales {
    grid-column: span 5;
  }

  .process__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .process__steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .process__steps::before {
    top: 1.37rem;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, #318fc1, #67ddd3);
  }

  .process-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 2.75rem 1fr;
    gap: 1.25rem;
  }

  .process-step__marker {
    margin-inline: auto;
  }

  .process-step__marker i {
    top: 100%;
    left: 50%;
    width: 1px;
    height: 1.25rem;
  }

  .process-step article {
    padding: 1.1rem;
  }

  .process-step h3 {
    font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  }

  .process-step p {
    font-size: 0.79rem;
  }

  .why-aunexo__header {
    grid-template-columns: minmax(0, 1.22fr) minmax(22rem, 0.78fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .why-aunexo__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .why-card--custom {
    grid-column: span 7;
  }

  .why-card--integration {
    grid-column: span 5;
  }

  .why-card--channel,
  .why-card--data,
  .why-card--automation {
    grid-column: span 4;
  }

  .why-card--evolution {
    grid-column: 1 / -1;
  }

  .faq__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .faq__layout {
    grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .faq__guide {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .contact__header {
    grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .contact__layout {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
    gap: 1rem;
  }

  .contact__context {
    padding: clamp(2rem, 3vw, 3rem);
  }

  .contact-form {
    padding: clamp(2rem, 3vw, 2.75rem);
  }

  .cookie-banner__panel {
    grid-template-columns: 4.5rem minmax(24rem, 1fr) minmax(27rem, auto);
    gap: clamp(1.25rem, 2.4vw, 2.5rem);
    align-items: center;
  }

  .cookie-banner__content h2 {
    font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  }

  .cookie-banner__actions {
    width: min(31rem, 36vw);
  }

}

@media (min-width: 100rem) {
  :root {
    --container-width: 1500px;
  }

  .hero__lead {
    max-width: 46rem;
  }

  .process__steps {
    gap: 1rem;
  }

  .process-step article {
    padding: 1.45rem;
  }

  .why-card {
    padding: 2rem;
  }

  .contact__layout {
    grid-template-columns: minmax(23rem, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 74.999rem) {
  .site-header .navbar-collapse {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100svh - var(--header-height));
    max-height: none;
    overflow-y: auto;
    border-bottom: 1px solid var(--color-line);
    background: rgba(5, 7, 11, 0.98);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
  }

  .site-header .navbar-collapse .site-navigation__inner {
    width: min(100% - 2rem, var(--container-width));
    min-height: calc(100svh - var(--header-height));
    margin-inline: auto;
  }
}

@media (max-width: 22.5rem) {
  :root {
    --header-height: 5rem;
  }

  .site-container {
    width: min(100% - 1.25rem, var(--container-width));
  }

  .brand-mark {
    width: 8.8rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .hero__title {
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .hero__visual {
    width: 108%;
    margin-left: -4%;
  }

  .ecosystem__node {
    min-width: 3.5rem;
    padding: 0.48rem 0.55rem;
  }

  .solution-demo {
    padding: 1rem;
  }

  .solution-demo__heading {
    gap: 0.65rem;
  }

  .solution-demo__number {
    width: 1.9rem;
    height: 1.9rem;
  }

  .solution-window--management,
  .solution-window--bi {
    padding: 0.75rem;
  }

  .faq__guide {
    padding: 1.2rem;
  }

  .faq-item summary {
    grid-template-columns: 1.65rem minmax(0, 1fr) 2.1rem;
    gap: 0.5rem;
  }

  .faq-item summary > i {
    width: 2rem;
    height: 2rem;
  }

  .faq-item__answer {
    padding: 0 2.2rem 1.25rem;
  }

  .contact__context,
  .contact-form {
    padding: 1rem;
  }

  .contact-field input {
    padding-inline: 0.75rem;
  }

  .contact-field textarea {
    padding: 0.75rem;
  }

  .cookie-banner {
    padding: 0.35rem;
  }

  .cookie-banner__panel {
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner__mark {
    width: 3.6rem;
    height: 3.6rem;
  }

  .cookie-action {
    padding-inline: 0.6rem;
    font-size: 0.65rem;
  }

  .cookie-preferences {
    padding: 0;
  }

  .cookie-preferences__panel {
    max-height: 100svh;
    padding: 1rem;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .cookie-category {
    grid-template-columns: 1.3rem minmax(0, 1fr) auto;
    gap: 0.3rem 0.55rem;
    padding: 0.8rem;
  }

  .cookie-switch {
    width: 2.4rem;
  }

  .cookie-category input:checked ~ .cookie-switch i {
    transform: translateX(0.9rem);
  }

  .crm-toolbar,
  .demo-kpis,
  .crm-pipeline {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/* Professional review refinements */
.nexo-core img {
  width: 126.5%;
  max-width: none;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #6f7d8c;
  font-size: 0.72rem;
}

.site-footer__meta span {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__meta a {
  color: #aebbc6;
  text-decoration: none;
}

.site-footer__meta a:hover {
  color: var(--color-white);
}

.demo-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.32rem 0.48rem;
  color: #287da9;
  border: 1px solid rgba(42, 157, 244, 0.2);
  border-radius: 999px;
  background: rgba(42, 157, 244, 0.06);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

.solution-demo__heading .demo-label {
  margin-bottom: 0.48rem;
}

.mobile-stage__label {
  position: absolute;
  z-index: 8;
  top: 1rem;
  right: 1rem;
  color: #8ccbe7;
  border-color: rgba(86, 184, 255, 0.24);
  background: rgba(6, 17, 27, 0.82);
}

.faq__layout--compact {
  display: block;
  width: min(100%, 72rem);
  margin-inline: auto;
}

.services,
.mobile-showcase,
.nexo,
.solutions,
.process,
.why-aunexo,
.faq,
.contact {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.services__header,
.solutions__header,
.process__header,
.why-aunexo__header,
.faq__header,
.contact__header {
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.service-card:hover,
.why-card:hover {
  transform: none;
}

@media (min-width: 48rem) {
  .mobile-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__top {
    align-items: flex-start;
  }
}

@media (min-width: 75rem) {
  .mobile-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-benefit:nth-child(3) {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 61.999rem) {
  .hero__container {
    gap: 0;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 47.999rem) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
  }

  .hero__container {
    gap: 2.75rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero__lead {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: 1.4rem;
  }

  .hero__signal {
    margin-top: 1.15rem;
  }

  .problems,
  .services,
  .mobile-showcase,
  .nexo,
  .solutions,
  .process,
  .why-aunexo,
  .faq,
  .contact {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .problems__header,
  .services__header,
  .solutions__header,
  .process__header,
  .why-aunexo__header,
  .faq__header,
  .contact__header {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .problems__header h2,
  .services__header h2,
  .mobile-showcase__content h2,
  .nexo__header h2,
  .solutions__header h2,
  .process__header h2,
  .why-aunexo__header h2,
  .faq__header h2,
  .contact__header h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.25rem);
    line-height: 1.02;
  }

  .services__grid,
  .solutions__grid,
  .why-aunexo__grid {
    gap: 0.7rem;
  }

  .service-card {
    gap: 1rem;
    padding: 1.1rem;
  }

  .service-card__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .service-card h3 {
    font-size: 1.28rem;
  }

  .service-card__content p {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .service-card__tags {
    display: none;
  }

  .mobile-showcase__layout {
    gap: 2rem;
  }

  .mobile-showcase__lead {
    line-height: 1.58;
  }

  .mobile-benefits {
    margin-top: 2rem;
  }

  .mobile-benefit {
    padding-block: 1rem;
  }

  .nexo-map {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .nexo-explainer {
    margin-top: 0.75rem;
  }

  .solution-demo {
    padding: 1rem;
  }

  .solution-demo__heading {
    margin-bottom: 1rem;
  }

  .solution-demo__heading h3 {
    font-size: 1.25rem;
  }

  .demo-kpis > div:nth-child(n + 3),
  .management-metrics > div:nth-child(n + 5),
  .crm-pipeline .pipeline-stage:nth-child(n + 4),
  .management-activity > div:last-child {
    display: none;
  }

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

  .process-step article {
    padding: 1.1rem;
  }

  .process-step ul {
    display: none;
  }

  .why-card {
    padding: 1.25rem;
  }

  .faq__layout {
    margin-top: 0;
  }

  .faq-item summary {
    padding-block: 1.05rem;
  }

  .contact__layout {
    gap: 0.75rem;
  }

  .contact-form {
    order: 1;
  }

  .contact__context {
    order: 2;
  }

  .contact__context,
  .contact-form {
    padding: 1.25rem;
  }
}

@media (max-width: 22.5rem) {
  .hero {
    padding-top: calc(var(--header-height) + 1.35rem);
    padding-bottom: 3.25rem;
  }

  .hero__title {
    font-size: 2.35rem;
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .hero__actions {
    gap: 0.55rem;
    margin-top: 1.15rem;
  }

  .hero__signal {
    margin-top: 0.95rem;
    font-size: 0.62rem;
  }

  .problems,
  .services,
  .mobile-showcase,
  .nexo,
  .solutions,
  .process,
  .why-aunexo,
  .faq,
  .contact {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

/* Content rhythm and viewport-fit review */
.site-navigation__links .nav-link.is-active {
  color: var(--color-white);
}

.hero__title {
  max-width: 18ch;
}

.solutions__header h2 {
  max-width: 15ch;
}

.problems,
.services,
.mobile-showcase,
.nexo,
.solutions,
.process,
.why-aunexo,
.faq,
.contact {
  padding-top: clamp(3.75rem, 5vw, 5rem);
  padding-bottom: clamp(3.75rem, 5vw, 5rem);
}

.problems__header,
.services__header,
.solutions__header,
.process__header,
.why-aunexo__header,
.faq__header,
.contact__header {
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(1.9rem, 3vw, 2.75rem);
}

.problems__header h2,
.services__header h2,
.mobile-showcase__content h2,
.nexo__header h2,
.solutions__header h2,
.process__header h2,
.why-aunexo__header h2,
.faq__header h2,
.contact__header h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.25rem);
  line-height: 1;
}

.problems__intro,
.services__intro,
.mobile-showcase__lead,
.nexo__header > p:last-child,
.solutions__intro p,
.process__intro > p,
.why-aunexo__intro p,
.faq__header > p,
.contact__header > p {
  line-height: 1.65;
}

.problem-card,
.service-card {
  gap: 1.1rem;
  padding: clamp(1.15rem, 1.55vw, 1.45rem);
}

.problem-card__content > p:last-child,
.service-card__content p {
  line-height: 1.52;
}

.problems__conclusion,
.process__closing {
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.mobile-showcase__layout {
  gap: clamp(2rem, 4vw, 3.75rem);
}

.mobile-showcase__lead,
.mobile-showcase__platforms {
  margin-top: 1.25rem;
}

.mobile-benefits {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.nexo-map {
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.solutions__grid {
  gap: 1rem;
}

.solution-demo {
  gap: 1.15rem;
}

.process__steps {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.process-step h3 {
  margin-top: 1rem;
}

.process-step ul {
  margin-top: 1rem;
}

.why-card > p:first-of-type,
.why-card__copy > p:first-of-type,
.why-card--evolution > div > p:first-of-type {
  margin-top: 0.9rem;
}

.why-card__icon {
  margin-bottom: 1rem;
}

.faq-item summary {
  min-height: 4.75rem;
}

@media (min-width: 62rem) {
  .hero {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3.25rem;
  }

  .hero__title {
    font-size: clamp(3.65rem, 4.75vw, 5rem);
  }

  .hero__lead {
    margin-top: 1.25rem;
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: 1.45rem;
  }

  .hero__signal {
    margin-top: 1.15rem;
  }

  .hero__visual {
    max-width: min(34rem, 67vh);
  }

  .hero__scroll {
    bottom: 0.8rem;
  }

  .nexo-map {
    min-height: 33rem;
  }
}

@media (min-width: 75rem) {
  .site-navigation__links .nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .problems__header,
  .services__header,
  .solutions__header,
  .process__header,
  .why-aunexo__header,
  .faq__header,
  .contact__header {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .mobile-stage {
    min-height: 36.5rem;
  }

  .process-step article {
    padding: 1rem;
  }
}

@media (min-width: 62rem) and (max-height: 56.25rem) {
  .hero {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2.5rem;
  }

  .hero__title {
    font-size: clamp(3.35rem, 4.3vw, 4.45rem);
  }

  .eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 1.15rem;
  }

  .hero__signal {
    margin-top: 0.85rem;
  }

  .hero__visual {
    max-width: min(30rem, 61vh);
  }

  .hero__scroll {
    bottom: 0.45rem;
  }
}

@media (max-width: 74.999rem) {
  :root {
    --header-height: 4.75rem;
  }

  .brand-mark {
    width: 9.5rem;
  }
}

@media (max-width: 47.999rem) {
  .hero {
    padding-top: calc(var(--header-height) + 1.2rem);
    padding-bottom: 2.25rem;
  }

  .hero__title {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 1.15rem;
  }

  .hero__signal {
    margin-top: 0.9rem;
  }

  .problems,
  .services,
  .mobile-showcase,
  .nexo,
  .solutions,
  .process,
  .why-aunexo,
  .faq,
  .contact {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .problems__header h2,
  .services__header h2,
  .mobile-showcase__content h2,
  .nexo__header h2,
  .solutions__header h2,
  .process__header h2,
  .why-aunexo__header h2,
  .faq__header h2,
  .contact__header h2 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
  }

  .section-eyebrow {
    margin-bottom: 0.9rem;
  }

  .problems__conclusion {
    margin-top: 1.6rem;
  }

  .mobile-showcase__platforms {
    gap: 0.4rem;
  }

  .nexo-core {
    width: 7.25rem;
    height: 7.25rem;
  }

  .nexo-map {
    gap: 1.1rem;
    padding: 1.35rem 0.8rem;
  }

  .nexo-map__nodes {
    gap: 0.45rem;
  }

  .nexo-node {
    min-height: 3.7rem;
    padding: 0.65rem;
  }

  .faq-item summary {
    min-height: 4.35rem;
  }
}

@media (max-width: 47.999rem) and (max-height: 42rem) {
  .hero {
    padding-top: calc(var(--header-height) + 0.65rem);
    padding-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.61rem;
  }

  .hero__lead {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero__actions {
    margin-top: 0.9rem;
  }

  .hero__actions .button--secondary,
  .hero__signal {
    display: none;
  }

  .hero__actions .button {
    min-height: 3.1rem;
  }
}

@media (max-width: 22.5rem) {
  :root {
    --header-height: 4.5rem;
  }

  .brand-mark {
    width: 8.6rem;
  }
}

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

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

/* Full-site experience system */
.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(0.28rem);
  transform: translateY(1.45rem) scale(0.988);
  transition:
    opacity 680ms var(--ease-out),
    filter 680ms var(--ease-out),
    transform 680ms var(--ease-out);
  transition-delay: calc(var(--reveal-order, 0) * 62ms);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.motion-ready .problems__header > [data-reveal],
.motion-ready .services__header > [data-reveal],
.motion-ready .solutions__header > [data-reveal],
.motion-ready .process__header > [data-reveal],
.motion-ready .why-aunexo__header > [data-reveal],
.motion-ready .faq__header > [data-reveal],
.motion-ready .contact__header > [data-reveal] {
  transform: translateY(1rem);
}

.motion-ready .problems__header > [data-reveal].is-revealed,
.motion-ready .services__header > [data-reveal].is-revealed,
.motion-ready .solutions__header > [data-reveal].is-revealed,
.motion-ready .process__header > [data-reveal].is-revealed,
.motion-ready .why-aunexo__header > [data-reveal].is-revealed,
.motion-ready .faq__header > [data-reveal].is-revealed,
.motion-ready .contact__header > [data-reveal].is-revealed {
  transform: translateY(0);
}

.section-eyebrow > span {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, currentColor 3%, transparent);
}

.section-eyebrow > span::after {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.6), transparent 66%);
  opacity: 0;
  transform: translateX(-120%);
}

.is-section-visible .section-eyebrow > span::after {
  animation: section-index-sheen 1.2s 280ms var(--ease-out) both;
}

/* Operational challenge */
.problem-card {
  --problem-accent: 42, 157, 244;
  isolation: isolate;
  border-color: rgba(25, 48, 66, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 253, 0.7)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 1.2rem 3.4rem rgba(20, 42, 59, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.problem-card:nth-child(2) { --problem-accent: 77, 174, 225; }
.problem-card:nth-child(3) { --problem-accent: 74, 191, 196; }
.problem-card:nth-child(4) { --problem-accent: 59, 139, 201; }
.problem-card:nth-child(5) { --problem-accent: 105, 230, 220; }

.problem-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--spot-x, 72%) var(--spot-y, 20%), rgba(var(--problem-accent), 0.14), transparent 12rem),
    linear-gradient(135deg, transparent 72%, rgba(var(--problem-accent), 0.055));
  opacity: 0.55;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.problem-card:hover {
  border-color: rgba(var(--problem-accent), 0.34);
  box-shadow: 0 1.8rem 4.5rem rgba(20, 42, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-0.35rem);
}

.problem-card:hover::after {
  opacity: 1;
}

.problem-card__visual {
  position: relative;
  color: rgb(var(--problem-accent));
  border-color: rgba(var(--problem-accent), 0.23);
  background: rgba(var(--problem-accent), 0.055);
  box-shadow: inset 0 0 1.5rem rgba(var(--problem-accent), 0.035);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.problem-card:hover .problem-card__visual {
  box-shadow: 0 0 1.8rem rgba(var(--problem-accent), 0.16), inset 0 0 1.5rem rgba(var(--problem-accent), 0.07);
  transform: translateY(-0.16rem) rotate(-2deg);
}

.problem-card--dark {
  background:
    radial-gradient(circle at var(--spot-x, 82%) var(--spot-y, 15%), rgba(86, 184, 255, 0.19), transparent 16rem),
    linear-gradient(145deg, #0a1723, #0c1d2b);
  box-shadow: 0 1.5rem 4rem rgba(5, 7, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.problems__conclusion > span,
.process__closing > span {
  position: relative;
  overflow: hidden;
}

.problems__conclusion > span::after,
.process__closing > span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #dffffc;
  transform: translateX(-120%);
}

.is-section-visible .problems__conclusion > span::after,
.is-section-visible .process__closing > span::after {
  animation: accent-line-pass 2.8s 600ms ease-in-out infinite;
}

/* Services */
.service-card {
  --service-rgb: 86, 184, 255;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 1.25rem 3.5rem rgba(0, 0, 0, 0.08);
}

.service-card:nth-child(2) { --service-rgb: 105, 230, 220; }
.service-card:nth-child(3) { --service-rgb: 102, 169, 255; }
.service-card:nth-child(4) { --service-rgb: 81, 201, 189; }
.service-card:nth-child(5) { --service-rgb: 91, 192, 238; }
.service-card:nth-child(6) { --service-rgb: 105, 230, 220; }

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--spot-x, 82%) var(--spot-y, 14%), rgba(var(--service-rgb), 0.18), transparent 12rem),
    linear-gradient(90deg, rgba(var(--service-rgb), 0.8), transparent 38%) top left / 100% 1px no-repeat;
  opacity: 0.38;
  transition: opacity 280ms ease;
}

.service-card:hover {
  border-color: rgba(var(--service-rgb), 0.34);
  background: linear-gradient(145deg, rgba(var(--service-rgb), 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: 0 1.7rem 4.2rem rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-0.35rem);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  position: relative;
  color: rgb(var(--service-rgb));
  border-color: rgba(var(--service-rgb), 0.24);
  background: rgba(var(--service-rgb), 0.065);
  box-shadow: inset 0 0 1.4rem rgba(var(--service-rgb), 0.035);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.service-card__icon::after {
  position: absolute;
  inset: 0.34rem;
  content: "";
  border: 1px solid rgba(var(--service-rgb), 0.1);
  border-radius: 0.32rem;
}

.service-card:hover .service-card__icon {
  box-shadow: 0 0 1.8rem rgba(var(--service-rgb), 0.14), inset 0 0 1.4rem rgba(var(--service-rgb), 0.07);
  transform: translateY(-0.15rem) rotate(2deg);
}

.service-card__tags li {
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.service-card:hover .service-card__tags li {
  color: #c7d9e6;
  border-color: rgba(var(--service-rgb), 0.18);
  background: rgba(var(--service-rgb), 0.045);
}

/* Mobile product demonstration */
.mobile-stage {
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at var(--spot-x, 70%) var(--spot-y, 25%), rgba(42, 157, 244, 0.25), transparent 22rem),
    #07101a;
  background-size: 4rem 4rem, 4rem 4rem, auto, auto;
  box-shadow: 0 2.6rem 6rem rgba(10, 24, 38, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow 300ms ease;
}

.mobile-stage::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 22%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(105, 230, 220, 0.075), transparent);
  opacity: 0;
  transform: skewX(-16deg);
  pointer-events: none;
}

.mobile-stage.is-demo-running::before {
  animation: demo-stage-scan 8s 1.4s ease-in-out infinite;
}

.mobile-stage:hover {
  box-shadow: 0 3rem 7rem rgba(10, 24, 38, 0.3), 0 0 0 1px rgba(86, 184, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mobile-phone,
.mobile-tablet {
  transition: filter 300ms ease, box-shadow 300ms ease;
}

.mobile-stage:hover .mobile-phone,
.mobile-stage:hover .mobile-tablet {
  filter: saturate(1.06) contrast(1.015);
}

.mobile-app__bars i,
.mobile-tablet__bars i {
  transform-origin: bottom;
}

.mobile-stage.is-demo-running .mobile-app__bars i,
.mobile-stage.is-demo-running .mobile-tablet__bars i {
  animation: demo-bar-rise 720ms var(--ease-out) both;
  animation-delay: calc(var(--bar-index, 0) * 70ms + 220ms);
}

.mobile-app__bars i:nth-child(1), .mobile-tablet__bars i:nth-child(1) { --bar-index: 1; }
.mobile-app__bars i:nth-child(2), .mobile-tablet__bars i:nth-child(2) { --bar-index: 2; }
.mobile-app__bars i:nth-child(3), .mobile-tablet__bars i:nth-child(3) { --bar-index: 3; }
.mobile-app__bars i:nth-child(4), .mobile-tablet__bars i:nth-child(4) { --bar-index: 4; }
.mobile-app__bars i:nth-child(5), .mobile-tablet__bars i:nth-child(5) { --bar-index: 5; }
.mobile-app__bars i:nth-child(6), .mobile-tablet__bars i:nth-child(6) { --bar-index: 6; }
.mobile-tablet__bars i:nth-child(7) { --bar-index: 7; }

.mobile-app__nav span,
.mobile-tablet__sidebar span {
  transition: color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.mobile-app__nav span.is-active {
  transform: translateY(-0.08rem);
}

.mobile-tablet__sidebar span.is-active {
  box-shadow: inset 2px 0 #58c7e8, 0 0.55rem 1.5rem rgba(19, 100, 143, 0.08);
}

.mobile-flow {
  overflow: hidden;
}

.mobile-flow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(105, 230, 220, 0.08), transparent);
  transform: translateX(-150%);
}

.mobile-stage.is-demo-running .mobile-flow::after {
  animation: mobile-flow-pass 4.8s 900ms ease-in-out infinite;
}

.mobile-flow__route i {
  animation: mobile-route-pulse 1.8s ease-in-out infinite;
}

.mobile-flow__route i:nth-of-type(2) {
  animation-delay: -0.9s;
}

.mobile-benefit {
  position: relative;
  transition: background-color 260ms ease, transform 260ms var(--ease-out);
}

.mobile-benefit:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(42, 157, 244, 0.025));
  transform: translateY(-0.2rem);
}

.mobile-benefit__icon {
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

.mobile-benefit:hover .mobile-benefit__icon {
  border-color: rgba(42, 157, 244, 0.36);
  box-shadow: 0 0 1.6rem rgba(42, 157, 244, 0.12);
  transform: rotate(-3deg);
}

/* Connected ecosystem */
.nexo-map {
  isolation: isolate;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(42, 157, 244, 0.105), transparent 24rem),
    rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 0 7rem rgba(42, 157, 244, 0.045), 0 1.8rem 5rem rgba(0, 0, 0, 0.1);
}

.nexo-map::after {
  position: absolute;
  z-index: 0;
  inset: 8%;
  content: "";
  border: 1px dashed rgba(86, 184, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.nexo-map__connections {
  z-index: 1;
}

.nexo-map__connections line {
  stroke-dasharray: 3 8;
  animation: nexo-data-flow 7s linear infinite;
}

.nexo-map__connections line:nth-child(2n) {
  animation-direction: reverse;
  animation-duration: 9s;
}

.nexo-map__connections line.is-active {
  stroke-dasharray: 12 5;
  animation-duration: 1.8s;
}

.nexo-core {
  overflow: visible;
  box-shadow:
    0 0 3.8rem rgba(42, 157, 244, 0.24),
    0 0 0 1rem rgba(42, 157, 244, 0.025),
    inset 0 0 2.2rem rgba(86, 184, 255, 0.08);
}

.nexo-core::before {
  animation: nexo-core-breathe 4.2s ease-in-out infinite;
}

.nexo-core__ring {
  animation: nexo-ring-spin 34s linear infinite;
}

.nexo-node {
  backdrop-filter: blur(0.7rem);
}

.nexo-node::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(86, 184, 255, 0.07), transparent 70%);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 220ms ease, transform 420ms var(--ease-out);
  pointer-events: none;
}

.nexo-node:hover::after,
.nexo-node:focus-visible::after,
.nexo-node.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.nexo-explainer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(86, 184, 255, 0.055), rgba(255, 255, 255, 0.022) 35%, rgba(255, 255, 255, 0.03));
}

.nexo-explainer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(#56b8ff, #69e6dc);
  box-shadow: 0 0 1rem rgba(86, 184, 255, 0.45);
}

/* Product demonstrations */
.solution-demo {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--spot-x, 70%) var(--spot-y, 18%), rgba(42, 157, 244, 0.09), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.6rem 4.5rem rgba(25, 44, 64, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms var(--ease-out);
}

.solution-demo:hover {
  border-color: rgba(42, 157, 244, 0.22);
  box-shadow: 0 2.2rem 5.5rem rgba(25, 44, 64, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-0.28rem);
}

.solution-window {
  position: relative;
  transition: box-shadow 300ms ease, transform 300ms var(--ease-out);
}

.solution-window::after {
  position: absolute;
  z-index: 12;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 42%, rgba(124, 218, 255, 0.045) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-70%);
  pointer-events: none;
}

.solutions__grid.is-demo-running .solution-window::after {
  animation: demo-window-sheen 8s 1.2s ease-in-out infinite;
}

.solution-demo:hover .solution-window {
  box-shadow: 0 2rem 5rem rgba(6, 16, 25, 0.25), 0 0 0 1px rgba(86, 184, 255, 0.08);
  transform: translateY(-0.12rem);
}

.pipeline-stage,
.management-metrics > div,
.management-activity > div:not(.management-activity__title) {
  transition: border-color 320ms ease, background-color 320ms ease, box-shadow 320ms ease, transform 320ms var(--ease-out);
}

.pipeline-stage.is-demo-active {
  border-color: rgba(86, 184, 255, 0.3);
  background: rgba(42, 157, 244, 0.075);
  box-shadow: inset 0 0 1.8rem rgba(42, 157, 244, 0.055);
  transform: translateY(-0.1rem);
}

.pipeline-stage.is-demo-active > span i {
  background: #69e6dc;
  box-shadow: 0 0 0.8rem rgba(105, 230, 220, 0.65);
}

.management-metrics > div.is-demo-active {
  border-color: rgba(105, 230, 220, 0.25);
  background: rgba(42, 157, 244, 0.1);
  box-shadow: 0 0 1.6rem rgba(42, 157, 244, 0.07);
  transform: translateY(-0.08rem);
}

.management-activity > div:not(.management-activity__title).is-demo-active {
  color: #b8d8e8;
  background: linear-gradient(90deg, rgba(42, 157, 244, 0.08), transparent);
}

.live-badge i {
  animation: live-status-pulse 2s ease-in-out infinite;
}

.solutions__grid.is-demo-running .demo-kpis > div,
.solutions__grid.is-demo-running .management-metrics > div {
  animation: demo-metric-in 560ms var(--ease-out) both;
  animation-delay: calc(var(--metric-index, 0) * 70ms + 180ms);
}

.demo-kpis > div:nth-child(1), .management-metrics > div:nth-child(1) { --metric-index: 1; }
.demo-kpis > div:nth-child(2), .management-metrics > div:nth-child(2) { --metric-index: 2; }
.demo-kpis > div:nth-child(3), .management-metrics > div:nth-child(3) { --metric-index: 3; }
.demo-kpis > div:nth-child(4), .management-metrics > div:nth-child(4) { --metric-index: 4; }
.management-metrics > div:nth-child(5) { --metric-index: 5; }
.management-metrics > div:nth-child(6) { --metric-index: 6; }

/* Process */
.process {
  --process-progress: 0;
}

.process__steps::after {
  position: absolute;
  z-index: 0;
  top: 1.15rem;
  left: 1.15rem;
  width: 1px;
  height: calc((100% - 2.3rem) * var(--process-progress));
  content: "";
  background: linear-gradient(#56b8ff, #69e6dc);
  box-shadow: 0 0 0.8rem rgba(86, 184, 255, 0.6);
  transition: height 160ms linear;
}

.process-step article {
  position: relative;
  overflow: hidden;
}

.process-step article::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 88% 0%, rgba(86, 184, 255, 0.13), transparent 10rem);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.process.is-demo-running .process-step--featured:not(.is-current) article {
  border-color: rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.026);
}

.process.is-demo-running .process-step--featured:not(.is-current) .process-step__marker {
  color: #78dcd4;
  border-color: rgba(86, 184, 255, 0.38);
  background: #09141e;
  box-shadow: 0 0 0 0.35rem rgba(8, 19, 29, 0.9), 0 0 1.5rem rgba(42, 157, 244, 0.1);
}

.process-step.is-current article {
  border-color: rgba(105, 230, 220, 0.36);
  background: rgba(17, 55, 76, 0.28);
  box-shadow: 0 1.7rem 4rem rgba(0, 0, 0, 0.2), inset 0 0 2rem rgba(42, 157, 244, 0.04);
  transform: translateY(-0.18rem);
}

.process-step.is-current article::after {
  opacity: 1;
}

.process-step.is-current .process-step__marker {
  color: #06121a;
  border-color: #69e6dc;
  background: #69e6dc;
  box-shadow: 0 0 0 0.35rem rgba(8, 19, 29, 0.9), 0 0 2rem rgba(105, 230, 220, 0.42);
  transform: scale(1.06);
}

.process-step__marker {
  transition: color 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease-out);
}

.process__route i {
  background-size: 200% 100%;
  animation: process-route-flow 3.8s linear infinite;
}

/* Why Aunexo */
.why-card {
  --why-rgb: 42, 157, 244;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 15%), rgba(var(--why-rgb), 0.1), transparent 16rem),
    rgba(255, 255, 255, 0.9);
}

.why-card:hover {
  border-color: rgba(var(--why-rgb), 0.24);
  box-shadow: 0 2rem 5rem rgba(23, 42, 59, 0.11);
  transform: translateY(-0.28rem);
}

.why-card--custom {
  --why-rgb: 105, 230, 220;
  background:
    radial-gradient(circle at var(--spot-x, 76%) var(--spot-y, 48%), rgba(42, 157, 244, 0.23), transparent 17rem),
    linear-gradient(140deg, #07111a, #0a1c29);
}

.why-card--integration { --why-rgb: 77, 174, 225; }
.why-card--evolution { --why-rgb: 74, 191, 196; }

.why-orbit__ring--outer {
  border-top-color: rgba(105, 230, 220, 0.4);
  animation: why-orbit-spin 28s linear infinite;
}

.why-orbit__ring--inner {
  animation: why-orbit-spin 22s linear reverse infinite;
}

.why-orbit__core {
  animation: why-core-breathe 4s ease-in-out infinite;
}

.why-orbit__node::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.22rem;
  height: 0.22rem;
  margin-right: 0.25rem;
  content: "";
  border-radius: 50%;
  background: #61c5dd;
  box-shadow: 0 0 0.45rem rgba(97, 197, 221, 0.7);
}

.why-bridge {
  position: relative;
  overflow: hidden;
}

.why-bridge::after {
  position: absolute;
  top: 50%;
  left: 14%;
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  border-radius: 50%;
  background: #69e6dc;
  box-shadow: 0 0 0.7rem rgba(105, 230, 220, 0.7);
  transform: translate(-50%, -50%);
  animation: why-bridge-packet 3.2s ease-in-out infinite;
}

.why-growth > b {
  position: relative;
  overflow: hidden;
}

.why-growth > b::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #d9fffb;
  transform: translateX(-110%);
  animation: why-growth-pass 3.6s ease-in-out infinite;
}

.why-growth > b:nth-of-type(2)::after { animation-delay: 0.35s; }
.why-growth > b:nth-of-type(3)::after { animation-delay: 0.7s; }

/* FAQ */
.faq__list {
  position: relative;
}

.faq__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(#56b8ff, transparent 72%);
  opacity: 0.36;
}

.faq-item {
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(#56b8ff, #69e6dc);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 260ms ease, transform 320ms var(--ease-out);
}

.faq-item[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-item[open] {
  background:
    radial-gradient(circle at 85% 20%, rgba(86, 184, 255, 0.075), transparent 14rem),
    linear-gradient(90deg, rgba(42, 157, 244, 0.075), transparent 72%);
}

.faq-item summary > i {
  transition: border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

.faq-item[open] summary > i {
  border-color: rgba(105, 230, 220, 0.34);
  background: rgba(105, 230, 220, 0.055);
  box-shadow: 0 0 1.4rem rgba(86, 184, 255, 0.1);
  transform: rotate(180deg);
}

.faq-item__answer {
  overflow: hidden;
}

/* Contact and footer */
.contact__context,
.contact-form {
  isolation: isolate;
}

.contact__context {
  background:
    radial-gradient(circle at var(--spot-x, 88%) var(--spot-y, 10%), rgba(86, 184, 255, 0.2), transparent 19rem),
    linear-gradient(145deg, #07101a, #0b1b29);
  box-shadow: 0 1.8rem 4.8rem rgba(13, 31, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact__signal {
  box-shadow: 0 0 2rem rgba(42, 157, 244, 0.08), inset 0 0 1.6rem rgba(42, 157, 244, 0.035);
}

.contact__signal span {
  transform-origin: bottom;
  animation: contact-signal-level 1.9s ease-in-out infinite;
}

.contact__signal span:nth-child(2) { animation-delay: -0.62s; }
.contact__signal span:nth-child(3) { animation-delay: -1.24s; }

.contact-form {
  background:
    radial-gradient(circle at var(--spot-x, 82%) var(--spot-y, 8%), rgba(42, 157, 244, 0.06), transparent 18rem),
    rgba(255, 255, 255, 0.91);
  box-shadow: 0 1.8rem 4.8rem rgba(13, 31, 47, 0.095), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-field {
  position: relative;
}

.contact-field::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #2a9df4, #69e6dc);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 200ms ease, transform 260ms var(--ease-out);
  pointer-events: none;
}

.contact-field:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-form__submit {
  position: relative;
  overflow: hidden;
}

.contact-form__submit::after {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -25%;
  width: 18%;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: skewX(-18deg);
}

.contact-form__submit:hover::after {
  opacity: 1;
  animation: contact-button-sheen 720ms var(--ease-out) both;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(86, 184, 255, 0.48), rgba(105, 230, 220, 0.35), transparent);
  box-shadow: 0 0 1.5rem rgba(86, 184, 255, 0.18);
}

@keyframes section-index-sheen {
  0% { opacity: 0; transform: translateX(-120%); }
  32% { opacity: 0.75; }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes accent-line-pass {
  0%, 18% { transform: translateX(-120%); }
  52%, 100% { transform: translateX(120%); }
}

@keyframes demo-stage-scan {
  0%, 14% { left: -24%; opacity: 0; }
  22% { opacity: 0.8; }
  64% { opacity: 0.18; }
  78%, 100% { left: 112%; opacity: 0; }
}

@keyframes demo-bar-rise {
  from { opacity: 0.28; transform: scaleY(0.06); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes mobile-flow-pass {
  0%, 15% { left: -5rem; }
  62%, 100% { left: calc(100% + 5rem); }
}

@keyframes mobile-route-pulse {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(0.12rem); }
}

@keyframes nexo-data-flow {
  to { stroke-dashoffset: -88; }
}

@keyframes nexo-core-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes nexo-ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes demo-window-sheen {
  0%, 18% { opacity: 0; transform: translateX(-75%); }
  25% { opacity: 1; }
  58%, 100% { opacity: 0; transform: translateX(75%); }
}

@keyframes live-status-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes demo-metric-in {
  from { opacity: 0; transform: translateY(0.55rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes process-route-flow {
  to { background-position: -200% 0; }
}

@keyframes why-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes why-core-breathe {
  0%, 100% { box-shadow: 0 0 2.6rem rgba(42, 157, 244, 0.17); }
  50% { box-shadow: 0 0 3.6rem rgba(42, 157, 244, 0.28); }
}

@keyframes why-bridge-packet {
  0%, 12% { left: 14%; opacity: 0; }
  24% { opacity: 1; }
  76% { opacity: 1; }
  88%, 100% { left: 86%; opacity: 0; }
}

@keyframes why-growth-pass {
  0%, 15% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(110%); }
}

@keyframes contact-signal-level {
  0%, 100% { opacity: 0.48; transform: scaleY(0.68); }
  50% { opacity: 1; transform: scaleY(1.08); }
}

@keyframes contact-button-sheen {
  from { left: -25%; }
  to { left: 120%; }
}

.problems:not(.is-section-active) .problems__conclusion > span::after,
.process:not(.is-section-active) .process__closing > span::after,
.nexo:not(.is-section-active) .nexo-map__connections line,
.nexo:not(.is-section-active) .nexo-core::before,
.nexo:not(.is-section-active) .nexo-core__ring,
.solutions:not(.is-section-active) .live-badge i,
.process:not(.is-section-active) .process__route i,
.why-aunexo:not(.is-section-active) .why-orbit__ring,
.why-aunexo:not(.is-section-active) .why-orbit__core,
.why-aunexo:not(.is-section-active) .why-bridge::after,
.why-aunexo:not(.is-section-active) .why-growth > b::after,
.contact:not(.is-section-active) .contact__signal span {
  animation-play-state: paused;
}

@media (min-width: 48rem) {
  .mobile-benefit {
    padding-inline: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 75rem) {
  .process__steps::after {
    top: 1.37rem;
    left: 10%;
    width: calc((80%) * var(--process-progress));
    height: 1px;
    background: linear-gradient(90deg, #56b8ff, #69e6dc);
    transition: width 160ms linear;
  }

  .process-step.is-current article {
    transform: translateY(-0.28rem);
  }
}

@media (max-width: 47.999rem) {
  .motion-ready [data-reveal] {
    filter: none;
    transform: translateY(0.85rem);
    transition-duration: 500ms;
    transition-delay: calc(var(--reveal-order, 0) * 38ms);
  }

  .motion-ready [data-reveal].is-revealed {
    transform: translateY(0);
  }

  .problem-card:hover,
  .service-card:hover,
  .mobile-benefit:hover,
  .solution-demo:hover,
  .why-card:hover {
    transform: none;
  }

  .solution-window::after,
  .mobile-stage::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-revealed {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mobile-app__bars i,
  .mobile-tablet__bars i {
    transform: scaleY(1);
  }
}

/* Mobile experience: touch-first navigation, rails and product switching */
.site-header {
  will-change: transform;
  transition:
    transform 240ms var(--ease-out),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.mobile-rail__controls,
.solutions-mobile-tabs {
  display: none;
}

@media (max-width: 47.999rem) {
  .site-header.is-mobile-hidden {
    transform: translateY(calc(-100% - 1px));
  }

  .site-header:focus-within,
  body.navigation-open .site-header {
    transform: translateY(0);
  }

  .mobile-rail {
    display: grid;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 2.35rem);
    gap: 0.75rem !important;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 2.35rem 0.85rem 0;
    scroll-padding-inline: 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-rail::-webkit-scrollbar,
  .nexo-map__nodes::-webkit-scrollbar {
    display: none;
  }

  .mobile-rail:focus-visible {
    outline: 2px solid rgba(42, 157, 244, 0.58);
    outline-offset: 0.3rem;
  }

  .mobile-rail > * {
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .problems__grid.mobile-rail .problem-card {
    min-height: 13.75rem;
  }

  .services__grid.mobile-rail .service-card {
    min-height: 15.25rem;
  }

  .mobile-benefits.mobile-rail {
    margin-top: 2rem;
    border-top: 0;
  }

  .mobile-benefits.mobile-rail .mobile-benefit {
    min-height: 7.25rem;
    align-content: center;
    padding: 1rem;
    border: 1px solid rgba(5, 7, 11, 0.1);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 1rem 2.7rem rgba(22, 43, 61, 0.045);
  }

  .mobile-rail > .is-mobile-active {
    border-color: rgba(42, 157, 244, 0.28);
    box-shadow: 0 1rem 3rem rgba(23, 62, 89, 0.09);
  }

  .services .mobile-rail > .is-mobile-active {
    border-color: rgba(86, 184, 255, 0.3);
    background:
      radial-gradient(circle at 92% 7%, rgba(86, 184, 255, 0.11), transparent 7rem),
      rgba(255, 255, 255, 0.045);
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.18);
  }

  .mobile-rail__controls {
    --rail-progress: 20%;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.25rem;
  }

  .mobile-rail__button {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    padding: 0;
    color: #173044;
    border: 1px solid rgba(8, 24, 37, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0.75rem 2rem rgba(17, 40, 58, 0.06);
    font-size: 1rem;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
  }

  .mobile-rail__button:active:not(:disabled) {
    transform: scale(0.92);
  }

  .mobile-rail__button:disabled {
    cursor: default;
    opacity: 0.3;
  }

  .mobile-rail__position {
    display: grid;
    grid-template-columns: auto minmax(2rem, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    color: #8794a0;
    font-size: 0.58rem;
    font-weight: 780;
    letter-spacing: 0.12em;
  }

  .mobile-rail__position strong {
    color: #147caf;
    font: inherit;
  }

  .mobile-rail__position i {
    position: relative;
    display: block;
    height: 1px;
    overflow: hidden;
    background: rgba(9, 31, 47, 0.13);
  }

  .mobile-rail__position i > b {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--rail-progress);
    background: linear-gradient(90deg, #2a9df4, #69e6dc);
    box-shadow: 0 0 0.75rem rgba(42, 157, 244, 0.42);
    transition: width 320ms var(--ease-out);
  }

  .services .mobile-rail__button {
    color: #b9d5e7;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.16);
  }

  .services .mobile-rail__position,
  .services .mobile-rail__position strong {
    color: #6dbfdf;
  }

  .services .mobile-rail__position i {
    background: rgba(255, 255, 255, 0.12);
  }

  .problems__conclusion {
    margin-top: 1.35rem;
  }

  .nexo-map {
    gap: 1.25rem;
    padding: 1.5rem 0.8rem 1rem;
  }

  .nexo-map::after {
    inset: 5% 18% 35%;
  }

  .nexo-map__nodes {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(7.75rem, 42%);
    gap: 0.55rem;
    overflow-x: auto;
    margin-inline: -0.1rem;
    padding: 0.35rem 1.3rem 0.7rem 0.1rem;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.5rem), transparent 100%);
  }

  .nexo-node {
    width: auto;
    min-height: 4.2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .nexo-node:active {
    transform: scale(0.97);
  }

  .nexo-explainer {
    min-height: 0;
    margin-top: 0.7rem;
    gap: 0.55rem;
    padding: 1.1rem;
  }

  .solutions-mobile-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-bottom: 0.8rem;
    padding: 0.3rem;
    border: 1px solid rgba(5, 7, 11, 0.1);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1rem 3rem rgba(23, 48, 66, 0.045);
    backdrop-filter: blur(0.8rem);
  }

  .solutions-mobile-tabs__button {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.08rem 0.55rem;
    align-items: center;
    padding: 0.8rem;
    color: #7c8994;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    background: transparent;
    text-align: left;
    transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  }

  .solutions-mobile-tabs__button > span {
    grid-row: 1 / 3;
    color: #74a7c1;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .solutions-mobile-tabs__button strong {
    color: inherit;
    font-size: 0.82rem;
    font-weight: 760;
    line-height: 1;
  }

  .solutions-mobile-tabs__button small {
    color: #99a4ad;
    font-size: 0.5rem;
    font-weight: 720;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .solutions-mobile-tabs__button.is-active {
    color: #0d293b;
    border-color: rgba(42, 157, 244, 0.2);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0.7rem 1.8rem rgba(20, 61, 89, 0.09), inset 0 -2px 0 #4ebbd3;
  }

  .solutions-mobile-tabs__button:focus-visible {
    outline: 1px solid rgba(42, 157, 244, 0.58);
    outline-offset: 2px;
  }

  .solutions.has-mobile-tabs .solutions__grid {
    display: block;
  }

  .solutions.has-mobile-tabs .solution-demo:not(.is-mobile-active) {
    display: none;
  }

  .solutions.has-mobile-tabs .solution-demo.is-mobile-active {
    animation: mobile-demo-enter 420ms var(--ease-out) both;
  }

  .contact-form__grid {
    gap: 1rem;
  }

  .contact-field textarea {
    min-height: 8.5rem;
  }

  .problem-card:active,
  .service-card:active,
  .mobile-benefit:active,
  .why-card:active {
    transform: scale(0.985);
  }
}

@media (min-width: 23.5rem) and (max-width: 47.999rem) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }

  .contact-field--wide {
    grid-column: 1 / -1;
  }

  .contact-field input {
    min-height: 3.15rem;
  }
}

@media (max-width: 47.999rem) and (min-height: 43rem) {
  .hero__scroll {
    display: flex;
    bottom: 1.2rem;
    font-size: 0.58rem;
  }

  .hero__scroll-line {
    width: 2.35rem;
  }
}

@keyframes mobile-demo-enter {
  from {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .solutions.has-mobile-tabs .solution-demo.is-mobile-active,
  .mobile-rail__position i > b {
    animation: none;
    transition: none;
  }
}
