:root {
  --bg: #050811;
  --bg-strong: #08101d;
  --panel: rgba(10, 15, 29, 0.78);
  --panel-strong: rgba(8, 13, 24, 0.92);
  --panel-soft: rgba(10, 16, 31, 0.56);
  --line: rgba(124, 151, 187, 0.18);
  --line-strong: rgba(162, 201, 255, 0.26);
  --text: #edf1f7;
  --muted: #98a6bc;
  --muted-soft: #70819d;
  --accent: #24d8ff;
  --accent-strong: #7b8dff;
  --accent-hot: #ff5a87;
  --success: #6cf2aa;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
  --wrap: min(1200px, calc(100vw - 40px));
  --wrap-wide: min(1320px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(50, 104, 227, 0.16), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(36, 216, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #04070f 0%, #070d18 40%, #091120 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 15, 0.6), rgba(4, 7, 15, 0.88)),
    url("assets/hero-background-premium.png") center center / cover no-repeat;
  opacity: 0.24;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: 0.22;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.wrap--story {
  width: var(--wrap-wide);
}

.wrapper {
  position: relative;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
}

.quick-access {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
}

.quick-access__list {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.quick-access__link {
  position: absolute;
  top: -100px;
  left: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(4, 10, 20, 0.96);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  transition: top 0.2s ease;
}

.quick-access__link:focus {
  top: 10px;
}

.s-gfx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.s-gfx__mesh,
.s-gfx__gradient {
  position: absolute;
  inset: 0;
}

.s-gfx__mesh {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.16;
  transform: perspective(1200px) rotateX(70deg) translateY(16%);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, transparent 100%);
}

.s-gfx__gradient {
  background:
    radial-gradient(circle at 50% 70%, rgba(125, 180, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(36, 216, 255, 0.08), transparent 35%);
}

.s-gfx__hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
}

.hotspot__ring {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef6ff, var(--accent));
  box-shadow: 0 0 18px rgba(36, 216, 255, 0.3);
}

.hotspot__ring::before,
.hotspot__ring::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(132, 180, 240, 0.24);
  border-radius: 50%;
  animation: hotspot-pulse 3s ease-out infinite;
  animation-delay: var(--delay);
}

.hotspot__ring::after {
  inset: -36px;
  opacity: 0.6;
  animation-delay: calc(var(--delay) + 0.8s);
}

.hotspot--accent .hotspot__ring {
  background: linear-gradient(135deg, #fff0f4, var(--accent-hot));
  box-shadow: 0 0 18px rgba(255, 90, 135, 0.34);
}

.hotspot--accent .hotspot__ring::before,
.hotspot--accent .hotspot__ring::after {
  border-color: rgba(255, 90, 135, 0.24);
}

.hotspot__ui {
  position: absolute;
  top: 28px;
  left: 18px;
  width: 210px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.s-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 18px;
}

.s-header__wrap {
  position: relative;
  width: var(--wrap-wide);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(151, 194, 248, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 18, 35, 0.86), rgba(7, 13, 24, 0.96)),
    rgba(8, 12, 22, 0.62);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 60px rgba(0, 0, 0, 0.2);
}

.s-header__logo img {
  width: 88px;
  filter: drop-shadow(0 0 18px rgba(104, 164, 255, 0.18));
}

.s-header__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.s-header__nav-link,
.s-menu__nav-link,
.s-footer__link,
.m-graph__step span,
.c-client-tile__label,
.m-welcome__eyebrow,
.m-story__eyebrow,
.c-ui-box__eyebrow,
.m-cta__eyebrow,
.m-articles__eyebrow,
.m-slider__eyebrow,
.c-alert__eyebrow {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.s-header__nav-link {
  position: relative;
  color: var(--muted);
  font-size: 0.72rem;
}

.s-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.25s ease;
}

.s-header__nav-link:hover,
.s-header__nav-link.is-active {
  color: var(--text);
}

.s-header__nav-link:hover::after,
.s-header__nav-link.is-active::after {
  transform: scaleX(1);
}

.s-header__button {
  justify-self: end;
}

.s-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(151, 194, 248, 0.14);
  border-radius: 50%;
  background: rgba(8, 13, 24, 0.88);
  color: var(--text);
}

.s-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.s-menu {
  position: fixed;
  inset: 92px 20px auto;
  z-index: 39;
  display: none;
  padding: 18px;
  border: 1px solid rgba(151, 194, 248, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 18, 35, 0.98), rgba(7, 13, 24, 1)),
    rgba(8, 12, 22, 0.94);
  box-shadow: var(--shadow);
}

body.is-menu-open .s-menu {
  display: block;
}

.s-menu__content {
  display: grid;
  gap: 14px;
}

.s-menu__nav-link {
  color: var(--muted);
  font-size: 0.84rem;
}

.s-menu__nav-link.is-active,
.s-menu__nav-link:hover {
  color: var(--text);
}

.a-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.a-button__dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  box-shadow: 0 0 12px rgba(36, 216, 255, 0.35);
}

.a-button--primary {
  color: var(--text);
  border-color: rgba(123, 141, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(30, 52, 106, 0.92), rgba(14, 20, 39, 0.98)),
    linear-gradient(135deg, rgba(123, 141, 255, 0.22), rgba(36, 216, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(18, 30, 62, 0.28);
}

.a-button--secondary,
.a-button--basic {
  border-color: rgba(151, 194, 248, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 18, 35, 0.84), rgba(7, 13, 24, 0.96)),
    rgba(9, 13, 24, 0.72);
  color: var(--text);
}

.a-button--primary:hover,
.a-button--secondary:hover,
.a-button--basic:hover {
  border-color: rgba(164, 209, 248, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 44px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(36, 216, 255, 0.08);
}

.c-alert {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(13, 21, 40, 0.86), rgba(8, 13, 24, 0.96)),
    rgba(7, 13, 24, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.c-alert__eyebrow {
  color: rgba(173, 225, 255, 0.78);
  font-size: 0.62rem;
}

.c-alert__text {
  color: rgba(226, 236, 247, 0.9);
  font-size: 0.9rem;
}

.module {
  position: relative;
  padding: 24px 0 0;
}

.module--full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.m-welcome {
  position: relative;
  padding: 42px 0 36px;
}

.m-welcome__wrap {
  max-width: 900px;
}

.m-welcome__eyebrow,
.m-story__eyebrow,
.c-ui-box__eyebrow,
.m-cta__eyebrow,
.m-articles__eyebrow,
.m-slider__eyebrow {
  margin: 0 0 16px;
  color: rgba(167, 213, 255, 0.78);
  font-size: 0.66rem;
}

.m-welcome__title,
.m-story__title,
.m-graph__title,
.m-cta__title,
.s-footer__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.m-welcome__title {
  max-width: 920px;
  font-size: clamp(4rem, 10vw, 8.2rem);
  background: linear-gradient(180deg, #ffffff 0%, #d8e6ff 50%, #8eb0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m-welcome__subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(217, 227, 240, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 500;
  line-height: 1.52;
}

.m-welcome__actions,
.m-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.c-clients {
  margin-top: 38px;
}

.c-clients__list,
.m-story__stats,
.m-story--three-up,
.m-graph__steps,
.m-articles__list,
.m-story {
  display: grid;
  gap: 16px;
}

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

.c-client-tile,
.c-ui-box,
.c-tile-quote,
.c-tile-article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 19, 37, 0.84), rgba(7, 13, 24, 0.96)),
    rgba(9, 14, 26, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.22);
}

.c-client-tile::before,
.c-ui-box::before,
.c-tile-quote::before,
.c-tile-article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 141, 255, 0.1), transparent 36%, transparent 72%, rgba(36, 216, 255, 0.05));
  pointer-events: none;
}

.c-client-tile,
.c-ui-box--feature,
.c-ui-box--stat,
.c-ui-box--insight {
  padding: 22px;
}

.c-client-tile__label {
  color: rgba(163, 209, 248, 0.72);
  font-size: 0.66rem;
}

.c-client-tile strong,
.c-ui-box__title,
.c-tile-article__copy,
.c-tile-quote__copy {
  display: block;
  margin-top: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}

.c-client-tile p,
.c-ui-box__text,
.m-story__text,
.m-graph__step p,
.m-cta__text,
.c-tile-article__more,
.c-tile-quote__author {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.m-story {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
  align-items: start;
}

.m-story__item {
  position: relative;
}

.m-story__item--wide {
  display: grid;
  gap: 22px;
}

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

.c-ui-box__number {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--text);
}

.c-ui-box--event {
  padding: 16px 18px;
  border-radius: 18px;
}

.c-ui-box__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.a-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(151, 194, 248, 0.14);
  border-radius: 999px;
  color: rgba(227, 238, 251, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(14, 22, 40, 0.62);
}

.a-badge--accent {
  border-color: rgba(255, 90, 135, 0.22);
  color: #ffeaf1;
  background: rgba(55, 12, 27, 0.48);
}

.s-progress {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 16px;
  width: 74px;
  align-self: start;
}

.s-progress__segment {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-left: 14px;
  color: rgba(167, 213, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.s-progress__segment::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(167, 213, 255, 0.7), rgba(167, 213, 255, 0.06));
}

.wrap--story {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
}

.m-graph {
  padding: 30px 0;
}

.m-graph__eyebrow {
  margin: 0 0 14px;
  color: rgba(167, 213, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-graph__title {
  max-width: 860px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.m-graph__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.m-graph__step {
  padding: 18px 18px 20px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 20px;
  background: rgba(10, 15, 29, 0.56);
}

.m-graph__step span {
  color: rgba(167, 213, 255, 0.78);
  font-size: 0.64rem;
}

.m-graph__step p {
  font-size: 0.86rem;
}

.c-stream {
  position: relative;
  min-height: 420px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(11, 19, 37, 0.8), rgba(7, 13, 24, 0.96)),
    rgba(10, 15, 29, 0.8);
  box-shadow: var(--shadow);
}

.c-stream__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-stream__lines path {
  fill: none;
  stroke: rgba(72, 181, 255, 0.4);
  stroke-width: 1.2;
  stroke-dasharray: 6 8;
  filter: drop-shadow(0 0 8px rgba(72, 181, 255, 0.14));
  animation: stream-dash 22s linear infinite;
}

.c-stream__point {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
}

.c-stream__pulse {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2f8ff, var(--accent));
  box-shadow: 0 0 14px rgba(36, 216, 255, 0.34);
}

.c-stream__pulse::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(122, 180, 255, 0.24);
  border-radius: 50%;
  animation: hotspot-pulse 2.8s ease-out infinite;
}

.c-stream__point.is-accent .c-stream__pulse {
  background: linear-gradient(135deg, #fff2f7, var(--accent-hot));
  box-shadow: 0 0 14px rgba(255, 90, 135, 0.28);
}

.c-stream__point.is-accent .c-stream__pulse::before {
  border-color: rgba(255, 90, 135, 0.24);
}

.c-stream__popup {
  position: absolute;
  top: 28px;
  left: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 14px;
  background: rgba(8, 13, 24, 0.9);
  color: rgba(231, 239, 248, 0.9);
  font-size: 0.78rem;
  white-space: nowrap;
}

.m-story--three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m-slider {
  padding: 24px 0;
}

.m-slider__top,
.m-articles__top,
.s-footer__top,
.s-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.m-slider__controls {
  display: flex;
  gap: 10px;
}

.m-slider__button {
  min-width: 84px;
  min-height: 42px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 999px;
  background: rgba(10, 15, 29, 0.68);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.m-slider__inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.m-slider__inner::-webkit-scrollbar {
  display: none;
}

.c-tile-quote {
  min-height: 240px;
  padding: 24px;
  scroll-snap-align: start;
}

.c-tile-quote__copy {
  margin-top: 0;
  font-size: 1.28rem;
}

.c-tile-quote__author {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.m-cta {
  padding: 32px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 19, 37, 0.82), rgba(7, 13, 24, 0.98)),
    rgba(10, 15, 29, 0.8);
  box-shadow: var(--shadow);
}

.m-cta__title {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.m-cta__text {
  max-width: 700px;
  margin-top: 18px;
}

.m-articles__top {
  margin-bottom: 18px;
}

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

.c-tile-article {
  display: block;
  min-height: 220px;
  padding: 22px;
}

.c-tile-article__meta,
.c-tile-article__more {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c-tile-article__meta {
  color: rgba(167, 213, 255, 0.78);
}

.c-tile-article__copy {
  margin-top: 16px;
  font-size: 1.18rem;
}

.c-tile-article__more {
  display: inline-flex;
  margin-top: 20px;
  color: rgba(233, 241, 249, 0.9);
}

.s-footer {
  padding: 24px 0 28px;
}

.s-footer__wrap {
  width: var(--wrap-wide);
  padding: 22px 22px 18px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(11, 19, 37, 0.78), rgba(7, 13, 24, 0.96)),
    rgba(10, 15, 29, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.22);
}

.s-footer__title {
  max-width: 700px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.s-footer__inner {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(151, 194, 248, 0.08);
}

.s-footer__left,
.s-footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.s-footer__link {
  color: var(--muted);
  font-size: 0.72rem;
}

.s-footer__link:hover {
  color: var(--text);
}

.page-engine .m-welcome__title {
  max-width: 1040px;
}

.page-engine,
.page-map {
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 211, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #09111e 0%, #0b1321 100%);
}

.page-engine::before,
.page-map::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(107, 141, 255, 0.08), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(41, 211, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(10, 16, 29, 0.98), rgba(8, 13, 24, 1));
  opacity: 1;
}

.page-engine::after,
.page-map::after {
  opacity: 0.12;
  background-size: 88px 88px;
}

.page-engine .module--welcome,
.page-map .module--welcome {
  min-height: auto;
  padding-top: 32px;
  align-items: flex-start;
}

.page-engine .m-welcome,
.page-map .m-welcome {
  padding: 18px 0 8px;
}

.page-engine .m-welcome__wrap,
.page-map .m-welcome__wrap {
  max-width: 1080px;
  padding: 34px 36px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(14, 21, 39, 0.92), rgba(8, 13, 24, 0.98)),
    rgba(10, 15, 29, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.22);
}

.page-engine .c-alert,
.page-map .c-alert {
  margin-bottom: 18px;
}

.page-engine .c-clients__list,
.page-map .c-clients__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-engine .module--story .m-story,
.page-engine .module--graph .m-graph,
.page-map .module--graph .m-graph {
  padding: 34px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(13, 21, 39, 0.9), rgba(8, 13, 24, 0.98)),
    rgba(10, 15, 29, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.22);
}

.page-engine .module--story .m-story--three-up {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.page-engine .c-stream,
.page-map .c-stream {
  min-height: 400px;
}

@keyframes hotspot-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes stream-dash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -180;
  }
}

@media (max-width: 1120px) {
  .c-clients__list,
  .m-graph__steps,
  .m-story__stats,
  .m-story,
  .m-story--three-up,
  .m-articles__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wrap--story {
    grid-template-columns: 1fr;
  }

  .s-progress {
    display: none;
  }

  .hotspot__ui {
    width: 180px;
  }

  .page-engine .c-clients__list,
  .page-map .c-clients__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .s-header__wrap {
    grid-template-columns: auto 1fr auto;
  }

  .s-header__nav,
  .s-header__button {
    display: none;
  }

  .s-header__toggle {
    display: block;
  }

  .m-welcome__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .m-welcome__subtitle,
  .m-story__text,
  .c-ui-box__text,
  .m-cta__text,
  .c-client-tile p {
    font-size: 0.9rem;
  }

  .c-stream__popup {
    white-space: normal;
    width: 150px;
  }

  .s-footer__top,
  .s-footer__inner,
  .m-articles__top,
  .m-slider__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(calc(100vw - 24px), 100%);
    --wrap-wide: min(calc(100vw - 24px), 100%);
  }

  .s-header {
    padding-top: 12px;
  }

  .s-header__wrap {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .module {
    padding-top: 16px;
  }

  .m-welcome {
    padding: 28px 0 22px;
  }

  .c-clients__list,
  .m-graph__steps,
  .m-story__stats,
  .m-story,
  .m-story--three-up,
  .m-articles__list {
    grid-template-columns: 1fr;
  }

  .m-welcome__actions,
  .m-cta__buttons {
    flex-direction: column;
  }

  .a-button {
    width: 100%;
  }

  .c-alert {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-stream {
    min-height: 340px;
  }

  .c-stream__popup {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .c-stream__point {
    transform: none;
  }

  .c-stream__pulse {
    width: 12px;
    height: 12px;
  }

  .m-cta {
    padding: 24px 18px;
  }

  .s-footer__wrap {
    padding: 18px;
  }
}
