: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 — static hero-background-premium.png removed; animated particles handle the field */

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;
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.s-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 28px));
}

.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);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.3s ease;
}

.s-header.is-hidden .s-header__wrap {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .s-header,
  .s-header__wrap {
    transition: none;
  }
}

.s-header__logo img {
  width: 148px;
  height: auto;
}

.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__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  align-items: center;
}

.m-welcome__copy {
  min-width: 0;
}

.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;
  text-wrap: balance;
}

.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__title--stacked {
  max-width: 5.4ch;
}

.m-welcome__title--stacked span {
  display: block;
}

.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;
}

.m-welcome__brandmark {
  position: relative;
  justify-self: center;
  width: min(100%, 216px);
}

.m-welcome__brandmark-frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(130, 178, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(63, 122, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(18, 27, 48, 0.92), rgba(8, 13, 24, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 60px rgba(0, 0, 0, 0.28);
}

.m-welcome__brandmark-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(102, 164, 255, 0.08);
  pointer-events: none;
}

.m-welcome__brandmark-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.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;
  overflow: visible;
}

.c-client-tile__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  white-space: nowrap;
  color: rgba(163, 209, 248, 0.72);
  font-size: 0.62rem;
}

.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.03em;
  line-height: 1.28;
  color: var(--text);
  text-wrap: balance;
}

.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 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  white-space: nowrap;
  color: rgba(167, 213, 255, 0.78);
  font-size: 0.6rem;
}

.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-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.c-stream.c-stream--broadcast {
  min-height: auto;
}

.c-stream--broadcast .c-stream__broadcast-shell {
  position: relative;
  padding: 22px;
}

.c-stream--broadcast .c-stream__broadcast-shell::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 154px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 233, 255, 0.14), rgba(111, 144, 255, 0.28), rgba(255, 123, 164, 0.14));
  pointer-events: none;
}

.c-stream--broadcast .c-stream__broadcast-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 78%, rgba(93, 233, 255, 0.05), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 123, 164, 0.05), transparent 20%),
    repeating-linear-gradient(
      180deg,
      rgba(120, 170, 255, 0.018) 0,
      rgba(120, 170, 255, 0.018) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.c-stream--broadcast .c-stream__broadcast-top,
.c-stream--broadcast .c-stream__mini-player-head,
.c-stream--broadcast .c-stream__analysis-row,
.c-stream--broadcast .c-stream__source-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c-stream--broadcast .c-stream__broadcast-top {
  position: relative;
  z-index: 1;
}

.c-stream--broadcast .c-stream__broadcast-kicker,
.c-stream--broadcast .c-stream__broadcast-pill,
.c-stream--broadcast .c-stream__stage-tag,
.c-stream--broadcast .c-stream__headline-time,
.c-stream--broadcast .c-stream__analysis-footer,
.c-stream--broadcast .c-stream__broadcast-chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.c-stream--broadcast .c-stream__broadcast-kicker {
  color: rgba(173, 202, 244, 0.76);
}

.c-stream--broadcast .c-stream__broadcast-pills,
.c-stream--broadcast .c-stream__broadcast-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-stream--broadcast .c-stream__broadcast-pill,
.c-stream--broadcast .c-stream__broadcast-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 999px;
  color: rgba(196, 210, 232, 0.84);
  background: rgba(7, 14, 28, 0.72);
}

.c-stream--broadcast .c-stream__broadcast-pill.is-live {
  color: rgba(93, 233, 255, 0.86);
  border-color: rgba(93, 233, 255, 0.18);
  box-shadow: 0 0 18px rgba(93, 233, 255, 0.1);
}

.c-stream--broadcast .c-stream__broadcast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.c-stream--broadcast .c-stream__stage {
  --stage-glow: rgba(93, 233, 255, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 18px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 14%, var(--stage-glow), transparent 34%),
    linear-gradient(180deg, rgba(12, 20, 37, 0.9), rgba(7, 12, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 42px rgba(0, 0, 0, 0.22);
}

.c-stream--broadcast .c-stream__stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 110px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 233, 255, 0.1), rgba(125, 149, 255, 0.32));
}

.c-stream--broadcast .c-stream__stage--channel {
  --stage-glow: rgba(93, 233, 255, 0.14);
}

.c-stream--broadcast .c-stream__stage--context {
  --stage-glow: rgba(97, 149, 255, 0.14);
}

.c-stream--broadcast .c-stream__stage--cluster {
  --stage-glow: rgba(123, 141, 255, 0.14);
}

.c-stream--broadcast .c-stream__stage--analysis {
  --stage-glow: rgba(255, 123, 164, 0.12);
}

.c-stream--broadcast .c-stream__stage-tag {
  color: rgba(173, 202, 244, 0.66);
}

.c-stream--broadcast .c-stream__stage strong {
  margin-top: 14px;
  color: rgba(244, 248, 252, 0.97);
  font-family: "Manrope", sans-serif;
  font-size: 1.24rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.c-stream--broadcast .c-stream__stage p {
  margin: auto 0 0;
  color: rgba(196, 210, 232, 0.78);
  font-size: 0.84rem;
  line-height: 1.52;
}

.c-stream--broadcast .c-stream__mini-player {
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 18px;
  background: rgba(7, 14, 28, 0.76);
}

.c-stream--broadcast .c-stream__mini-player-head,
.c-stream--broadcast .c-stream__mini-player-caption,
.c-stream--broadcast .c-stream__analysis-row span,
.c-stream--broadcast .c-stream__source-list span {
  color: rgba(173, 202, 244, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c-stream--broadcast .c-stream__mini-player-screen {
  position: relative;
  min-height: 132px;
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 27, 50, 0.4), rgba(7, 14, 28, 0.7)),
    linear-gradient(180deg, rgba(17, 34, 66, 0.94), rgba(8, 16, 30, 0.98));
}

.c-stream--broadcast .c-stream__mini-player-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 16px
    );
  pointer-events: none;
}

.c-stream--broadcast .c-stream__mini-player-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 22, 0.12), rgba(6, 11, 22, 0.48)),
    linear-gradient(90deg, rgba(8, 14, 26, 0.36), rgba(8, 14, 26, 0.06) 34%, rgba(8, 14, 26, 0.38)),
    url("assets/world-earth-map.png") center / cover no-repeat;
  filter: saturate(0.54) hue-rotate(150deg) brightness(0.82) contrast(1.16);
  transform: scale(1.04);
}

.c-stream--broadcast .c-stream__mini-player-livebug {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 123, 164, 0.18);
  border-radius: 999px;
  background: rgba(22, 8, 18, 0.78);
  color: rgba(255, 197, 214, 0.9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.c-stream--broadcast .c-stream__mini-player-meter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 3px;
  height: 30px;
}

.c-stream--broadcast .c-stream__mini-player-meter i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93, 233, 255, 0.94), rgba(93, 233, 255, 0.14));
}

.c-stream--broadcast .c-stream__mini-player-meter i:nth-child(1) {
  height: 8px;
}

.c-stream--broadcast .c-stream__mini-player-meter i:nth-child(2) {
  height: 14px;
}

.c-stream--broadcast .c-stream__mini-player-meter i:nth-child(3) {
  height: 22px;
}

.c-stream--broadcast .c-stream__mini-player-meter i:nth-child(4) {
  height: 12px;
}

.c-stream--broadcast .c-stream__mini-player-meter i:nth-child(5) {
  height: 18px;
}

.c-stream--broadcast .c-stream__mini-player-lower {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 14px;
  background: rgba(6, 12, 23, 0.84);
}

.c-stream--broadcast .c-stream__mini-player-lower b {
  display: block;
  margin-top: 6px;
  color: rgba(236, 241, 248, 0.94);
  font-size: 0.76rem;
  line-height: 1.34;
}

.c-stream--broadcast .c-stream__headline-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.c-stream--broadcast .c-stream__headline {
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 16px;
  background: rgba(7, 14, 28, 0.7);
}

.c-stream--broadcast .c-stream__headline p {
  margin: 8px 0 0;
  color: rgba(235, 240, 247, 0.9);
  font-size: 0.82rem;
  line-height: 1.46;
}

.c-stream--broadcast .c-stream__cluster-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.c-stream--broadcast .c-stream__cluster-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(123, 141, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 18, 34, 0.8);
  color: rgba(233, 238, 247, 0.88);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c-stream--broadcast .c-stream__source-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.c-stream--broadcast .c-stream__source-list li {
  padding: 10px 12px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 16px;
  background: rgba(7, 14, 28, 0.72);
}

.c-stream--broadcast .c-stream__source-list b,
.c-stream--broadcast .c-stream__analysis-row b {
  color: rgba(242, 246, 251, 0.96);
  font-weight: 700;
}

.c-stream--broadcast .c-stream__analysis-console {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 18px;
  background: rgba(7, 14, 28, 0.76);
}

.c-stream--broadcast .c-stream__analysis-row {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(18, 27, 49, 0.72);
}

.c-stream--broadcast .c-stream__analysis-footer {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 123, 164, 0.12);
  border-radius: 16px;
  color: rgba(255, 211, 222, 0.82);
  background: rgba(19, 12, 23, 0.7);
}

.c-stream--broadcast .c-stream__broadcast-legend {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: 18px;
}

.c-stream--broadcast .c-stream__app-preview,
.c-stream--globe .c-stream__app-preview {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 22px auto 0;
  padding: 16px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 22%, rgba(93, 233, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(11, 18, 34, 0.92), rgba(7, 13, 24, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 52px rgba(0, 0, 0, 0.24);
}

.c-stream--broadcast .c-stream__app-preview-top,
.c-stream--globe .c-stream__app-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.c-stream--broadcast .c-stream__app-preview-kicker,
.c-stream--globe .c-stream__app-preview-kicker {
  color: rgba(173, 202, 244, 0.76);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.c-stream--broadcast .c-stream__app-preview-caption,
.c-stream--globe .c-stream__app-preview-caption {
  color: rgba(196, 210, 232, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.c-stream--broadcast .c-stream__app-preview-frame,
.c-stream--globe .c-stream__app-preview-frame {
  overflow: hidden;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 22px;
  background: rgba(4, 9, 19, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 44px rgba(0, 0, 0, 0.24);
}

.c-stream--broadcast .c-stream__app-preview-image,
.c-stream--globe .c-stream__app-preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.c-open-preview {
  padding: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(93, 233, 255, 0.08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(113, 98, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.98), rgba(5, 10, 19, 1));
}

.c-open-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.c-open-hero-stack {
  display: grid;
  gap: 14px;
}

.c-open-hero-stack__item {
  padding: 14px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(93, 233, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(12, 19, 35, 0.94), rgba(7, 12, 22, 0.98));
}

.c-open-hero-stack__label,
.c-open-preview__order {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(93, 233, 255, 0.14);
  border-radius: 999px;
  color: rgba(173, 202, 244, 0.76);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(7, 14, 28, 0.72);
}

.c-open-hero-stack__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.c-open-preview__card,
.c-open-preview__stat {
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 24, 43, 0.92), rgba(8, 13, 24, 0.98)),
    rgba(7, 13, 24, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.c-open-preview__card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.c-open-preview__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(151, 194, 248, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(63, 122, 255, 0.16), transparent 56%),
    linear-gradient(180deg, rgba(10, 16, 30, 0.9), rgba(5, 9, 17, 0.98));
}

.c-open-preview__logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.c-open-preview__title {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(242, 247, 255, 0.96);
}

.c-open-preview__text {
  margin: 10px 0 0;
  color: rgba(196, 210, 232, 0.76);
  font-size: 0.93rem;
  line-height: 1.6;
}

.c-open-preview__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.c-open-preview__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(93, 233, 255, 0.16);
  border-radius: 999px;
  color: rgba(215, 232, 255, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(7, 14, 28, 0.72);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.c-open-preview__link:hover,
.c-open-preview__link:focus-visible {
  border-color: rgba(93, 233, 255, 0.34);
  color: rgba(245, 249, 255, 0.96);
  transform: translateY(-1px);
}

.c-open-preview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.c-open-preview__stat {
  padding: 16px;
}

.c-open-preview__stat strong {
  display: block;
  color: rgba(242, 247, 255, 0.96);
  font-size: 0.98rem;
}

.c-open-preview__stat span {
  display: block;
  margin-top: 8px;
  color: rgba(196, 210, 232, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.c-stream--broadcast .c-stream__broadcast-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(173, 202, 244, 0.4);
  box-shadow: 0 0 10px rgba(173, 202, 244, 0.22);
}

.c-stream--broadcast .c-stream__broadcast-chip.is-channel::before {
  background: #5de9ff;
  box-shadow: 0 0 10px rgba(93, 233, 255, 0.42);
}

.c-stream--broadcast .c-stream__broadcast-chip.is-context::before {
  background: #5b9dff;
  box-shadow: 0 0 10px rgba(91, 157, 255, 0.42);
}

.c-stream--broadcast .c-stream__broadcast-chip.is-cluster::before {
  background: #7f8fff;
  box-shadow: 0 0 10px rgba(127, 143, 255, 0.42);
}

.c-stream--broadcast .c-stream__broadcast-chip.is-analysis::before {
  background: #ff7ba4;
  box-shadow: 0 0 10px rgba(255, 123, 164, 0.42);
}

.c-stream.c-stream--globe {
  min-height: 560px;
}

.c-stream--globe .c-stream__globe-stage {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px 20px;
  min-height: 560px;
  padding: 22px;
}

.c-stream--globe .c-stream__mode-card {
  position: relative;
  padding: 18px 18px 20px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(14, 21, 39, 0.9), rgba(8, 13, 24, 0.96)),
    rgba(9, 14, 26, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.24);
}

.c-stream--globe .c-stream__mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 18%, var(--mode-glow, rgba(81, 237, 255, 0.16)), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%);
  pointer-events: none;
}

.c-stream--globe .c-stream__mode-card span,
.c-stream--globe .c-stream__projection-kicker,
.c-stream--globe .c-stream__projection-pill,
.c-stream--globe .c-stream__legend-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.c-stream--globe .c-stream__mode-card span {
  position: relative;
  display: inline-flex;
  color: rgba(173, 202, 244, 0.68);
}

.c-stream--globe .c-stream__mode-card strong {
  position: relative;
  display: block;
  margin-top: 14px;
  color: rgba(244, 248, 252, 0.97);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.c-stream--globe .c-stream__mode-card p {
  position: relative;
  margin: 12px 0 0;
  color: rgba(196, 210, 232, 0.76);
  font-size: 0.84rem;
  line-height: 1.48;
}

.c-stream--globe .c-stream__mode-card--realistic {
  --mode-glow: rgba(81, 237, 255, 0.16);
  grid-column: 1;
  grid-row: 1;
}

.c-stream--globe .c-stream__mode-card--tactical {
  --mode-glow: rgba(123, 141, 255, 0.14);
  grid-column: 3;
  grid-row: 1;
}

.c-stream--globe .c-stream__mode-card--network {
  --mode-glow: rgba(83, 177, 255, 0.14);
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.c-stream--globe .c-stream__mode-card--political {
  --mode-glow: rgba(255, 123, 164, 0.12);
  grid-column: 3;
  grid-row: 2;
  align-self: end;
}

.c-stream--globe .c-stream__projection {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 100%;
  border: 1px solid rgba(118, 168, 236, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(49, 107, 255, 0.22), transparent 44%),
    radial-gradient(circle at 20% 72%, rgba(81, 237, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 123, 164, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(8, 15, 32, 0.96), rgba(5, 10, 20, 0.99));
}

.c-stream--globe .c-stream__projection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    repeating-linear-gradient(
      180deg,
      rgba(120, 170, 255, 0.02) 0,
      rgba(120, 170, 255, 0.02) 1px,
      transparent 1px,
      transparent 24px
    );
  pointer-events: none;
}

.c-stream--globe .c-stream__projection-top {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.c-stream--globe .c-stream__projection-kicker {
  color: rgba(173, 202, 244, 0.74);
}

.c-stream--globe .c-stream__projection-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(81, 237, 255, 0.18);
  border-radius: 999px;
  color: rgba(81, 237, 255, 0.82);
  background: rgba(7, 14, 28, 0.72);
  box-shadow: 0 0 18px rgba(81, 237, 255, 0.1);
}

.c-stream--globe .c-stream__world-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-stream--globe .c-stream__world-shell {
  fill: none;
  stroke: rgba(90, 208, 255, 0.22);
  stroke-width: 1.3;
}

.c-stream--globe .c-stream__world-shell-inner {
  fill: url(#wsmOceanFill);
  stroke: rgba(118, 208, 255, 0.16);
  stroke-width: 1;
}

.c-stream--globe .c-stream__world-glow {
  opacity: 0.64;
}

.c-stream--globe .c-stream__world-panel-fill {
  fill: url(#wsmPanelDepth);
}

.c-stream--globe .c-stream__world-map {
  opacity: 0.94;
  filter: saturate(0.62) hue-rotate(150deg) brightness(0.82) contrast(1.18);
}

.c-stream--globe .c-stream__world-map-tint {
  fill: rgba(58, 116, 255, 0.1);
}

.c-stream--globe .c-stream__world-latitude,
.c-stream--globe .c-stream__world-meridian,
.c-stream--globe .c-stream__world-equator {
  fill: none;
  stroke: rgba(90, 208, 255, 0.16);
  stroke-width: 1;
  stroke-dasharray: 8 7;
}

.c-stream--globe .c-stream__world-equator {
  stroke: rgba(90, 208, 255, 0.2);
}

.c-stream--globe .c-stream__continent {
  fill: url(#wsmLandFill);
  stroke: rgba(196, 226, 255, 0.22);
  stroke-width: 1.15;
  filter: drop-shadow(0 0 14px rgba(79, 123, 255, 0.14));
}

.c-stream--globe .c-stream__world-sweep {
  opacity: 0.7;
  transform-origin: 600px 256px;
  filter: drop-shadow(0 0 14px rgba(93, 233, 255, 0.24));
  animation: wsm-sweep 7.2s linear infinite;
}

.c-stream--globe .c-stream__route {
  fill: none;
  stroke: url(#wsmRoutePrimary);
  stroke-width: 1.8;
  stroke-dasharray: 8 13;
  opacity: 0.32;
  filter: drop-shadow(0 0 6px rgba(81, 237, 255, 0.12));
  animation: wsm-dash 18s linear infinite;
}

.c-stream--globe .c-stream__route--accent {
  stroke: url(#wsmRouteHot);
  stroke-width: 2.1;
  opacity: 0.4;
}

.c-stream--globe .c-stream__world-node-ring {
  fill: none;
  stroke-width: 1.1;
  opacity: 0.42;
  transform-origin: center;
  animation: wsm-pulse 3.4s ease-in-out infinite;
}

.c-stream--globe .c-stream__world-node-ring.is-human {
  stroke: rgba(105, 240, 255, 0.36);
}

.c-stream--globe .c-stream__world-node-ring.is-infra {
  stroke: rgba(91, 164, 255, 0.34);
}

.c-stream--globe .c-stream__world-node-ring.is-financial {
  stroke: rgba(255, 123, 164, 0.34);
}

.c-stream--globe .c-stream__world-node-ring.is-telecom {
  stroke: rgba(156, 140, 255, 0.34);
}

.c-stream--globe .c-stream__world-node {
  filter: drop-shadow(0 0 10px rgba(81, 237, 255, 0.35));
}

.c-stream--globe .c-stream__world-node.is-human {
  fill: #69f0ff;
}

.c-stream--globe .c-stream__world-node.is-infra {
  fill: #5ba4ff;
}

.c-stream--globe .c-stream__world-node.is-financial {
  fill: #ff7ba4;
}

.c-stream--globe .c-stream__world-node.is-telecom {
  fill: #9c8cff;
}

.c-stream--globe .c-stream__beacon {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 999px;
  background: rgba(7, 14, 28, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.24);
  transform: translate(var(--beacon-shift-x, -50%), -50%);
  animation: wsm-float 4.8s ease-in-out infinite;
}

.c-stream--globe .c-stream__beacon--human,
.c-stream--globe .c-stream__beacon--infra {
  --beacon-shift-x: 0%;
}

.c-stream--globe .c-stream__beacon--financial {
  --beacon-shift-x: -50%;
}

.c-stream--globe .c-stream__beacon--telecom {
  --beacon-shift-x: -100%;
}

.c-stream--globe .c-stream__beacon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.c-stream--globe .c-stream__beacon-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 239, 247, 0.88);
  white-space: nowrap;
}

.c-stream--globe .c-stream__beacon--human .c-stream__beacon-dot {
  background: #69f0ff;
  color: #69f0ff;
}

.c-stream--globe .c-stream__beacon--infra .c-stream__beacon-dot {
  background: #5ba4ff;
  color: #5ba4ff;
}

.c-stream--globe .c-stream__beacon--financial .c-stream__beacon-dot {
  background: #ff7ba4;
  color: #ff7ba4;
}

.c-stream--globe .c-stream__beacon--telecom .c-stream__beacon-dot {
  background: #9c8cff;
  color: #9c8cff;
}

.c-stream--globe .c-stream__legend {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.c-stream--globe .c-stream__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(151, 194, 248, 0.12);
  border-radius: 999px;
  color: rgba(196, 210, 232, 0.82);
  background: rgba(7, 14, 28, 0.72);
}

.c-stream--globe .c-stream__legend-item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.c-stream--globe .c-stream__legend-item.is-human i {
  background: #69f0ff;
  box-shadow: 0 0 10px rgba(105, 240, 255, 0.5);
}

.c-stream--globe .c-stream__legend-item.is-infra i {
  background: #5ba4ff;
  box-shadow: 0 0 10px rgba(91, 164, 255, 0.46);
}

.c-stream--globe .c-stream__legend-item.is-financial i {
  background: #ff7ba4;
  box-shadow: 0 0 10px rgba(255, 123, 164, 0.46);
}

.c-stream--globe .c-stream__legend-item.is-telecom i {
  background: #9c8cff;
  box-shadow: 0 0 10px rgba(156, 140, 255, 0.46);
}

.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,
.page-gs,
.page-ns {
  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,
.page-gs::before,
.page-ns::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,
.page-gs::after,
.page-ns::after {
  opacity: 0.12;
  background-size: 88px 88px;
}

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

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

.page-engine .m-welcome__wrap,
.page-map .m-welcome__wrap,
.page-gs .m-welcome__wrap,
.page-ns .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-map .m-welcome__hero,
.page-gs .m-welcome__hero,
.page-ns .m-welcome__hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px 40px;
  align-items: start;
}

.page-map .m-welcome__copy,
.page-gs .m-welcome__copy,
.page-ns .m-welcome__copy {
  max-width: 700px;
}

.page-map .m-welcome__brandmark,
.page-gs .m-welcome__brandmark,
.page-ns .m-welcome__brandmark {
  align-self: start;
  margin-top: 40px;
  transform: translateX(-110px);
}

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

.page-engine .c-clients__list,
.page-map .c-clients__list,
.page-gs .c-clients__list,
.page-ns .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,
.page-gs .module--story .m-story,
.page-gs .module--graph .m-graph,
.page-ns .module--story .m-story,
.page-ns .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,
.page-gs .module--story .m-story--three-up,
.page-ns .module--story .m-story--three-up {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

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

.page-open .m-welcome__copy {
  max-width: 650px;
}

.page-open .m-welcome__brandmark {
  width: min(100%, 326px);
  margin-top: 20px;
  transform: translateX(-84px);
}

.page-open .m-welcome__brandmark-frame {
  padding: 14px;
  border-radius: 36px;
}

.page-open .m-welcome__brandmark-frame::before {
  inset: 16px;
  border-radius: 24px;
}

.page-open .m-welcome__brandmark-image {
  border-radius: 22px;
}

/* Globe arcs — cooler blue-teal for planetary feel */
.c-stream--globe .c-stream__lines path {
  stroke: rgba(36, 216, 255, 0.35);
  stroke-width: 1;
}

/* Channel waveforms — slightly warmer, more saturated */
.c-stream--channels .c-stream__lines path {
  stroke: rgba(86, 200, 255, 0.38);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

/* Pipeline steps — crisp accent color, sharper corners */
.c-stream--pipeline .c-stream__lines path {
  stroke: rgba(36, 216, 255, 0.42);
  stroke-width: 1.5;
  stroke-linejoin: miter;
  animation-duration: 16s;
}

/* Engine convergence — pinkish-purple for analytical core */
.c-stream--engine .c-stream__lines path {
  stroke: rgba(123, 141, 255, 0.38);
  stroke-width: 1.2;
}

@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;
  }
}

@keyframes wsm-sweep {
  0% {
    transform: translateX(-182px) rotate(-16deg);
    opacity: 0;
  }

  18% {
    opacity: 0.18;
  }

  52% {
    opacity: 0.82;
  }

  84% {
    opacity: 0.16;
  }

  100% {
    transform: translateX(182px) rotate(-16deg);
    opacity: 0;
  }
}

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

  to {
    stroke-dashoffset: -220;
  }
}

@keyframes wsm-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.32;
  }

  50% {
    transform: scale(1.16);
    opacity: 0.64;
  }
}

@keyframes wsm-float {
  0%,
  100% {
    transform: translate(var(--beacon-shift-x, -50%), -50%);
  }

  50% {
    transform: translate(var(--beacon-shift-x, -50%), calc(-50% - 5px));
  }
}

@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,
  .page-gs .c-clients__list,
  .page-ns .c-clients__list {
    grid-template-columns: 1fr;
  }

  .c-stream.c-stream--globe {
    min-height: auto;
  }

  .c-stream--broadcast .c-stream__broadcast-shell::before,
  .c-stream--broadcast .c-stream__stage:not(:last-child)::after {
    display: none;
  }

  .c-stream--broadcast .c-stream__broadcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c-stream--globe .c-stream__globe-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .c-stream--globe .c-stream__projection {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 460px;
  }

  .c-stream--globe .c-stream__mode-card--realistic,
  .c-stream--globe .c-stream__mode-card--tactical,
  .c-stream--globe .c-stream__mode-card--network,
  .c-stream--globe .c-stream__mode-card--political {
    grid-row: auto;
    grid-column: auto;
    align-self: stretch;
  }
}

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

  .mobile-only {
    display: block;
  }

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

  .s-header__wrap {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .s-header__logo img {
    width: 126px;
  }

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

  .s-header__toggle {
    display: block;
  }

  .s-menu {
    inset: 82px 12px auto;
    padding: 16px;
    border-radius: 20px;
  }

  .s-menu__nav-link {
    font-size: 0.8rem;
  }

  .c-alert {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 10px 12px;
    padding: 14px 16px;
  }

  .c-alert__text {
    line-height: 1.45;
  }

  .m-welcome__title {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    line-height: 0.94;
  }

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

  .page-engine .m-welcome__wrap,
  .page-map .m-welcome__wrap,
  .page-gs .m-welcome__wrap,
  .page-ns .m-welcome__wrap {
    padding: 28px 24px;
  }

  .page-engine .m-welcome__wrap {
    text-align: center;
  }

  .page-engine .m-welcome__actions {
    justify-content: center;
  }

  .page-map .m-welcome__hero,
  .page-gs .m-welcome__hero,
  .page-ns .m-welcome__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .page-map .m-welcome__copy,
  .page-gs .m-welcome__copy,
  .page-ns .m-welcome__copy {
    display: contents;
    max-width: none;
    text-align: center;
  }

  .page-map .m-welcome__eyebrow,
  .page-gs .m-welcome__eyebrow,
  .page-ns .m-welcome__eyebrow {
    order: 1;
    text-align: center;
  }

  .page-map .m-welcome__title,
  .page-gs .m-welcome__title,
  .page-ns .m-welcome__title {
    order: 2;
    text-align: center;
  }

  .page-map .m-welcome__subtitle,
  .page-gs .m-welcome__subtitle,
  .page-ns .m-welcome__subtitle {
    order: 4;
    max-width: none;
    text-align: center;
  }

  .page-map .m-welcome__actions,
  .page-gs .m-welcome__actions,
  .page-ns .m-welcome__actions {
    order: 5;
    justify-content: center;
  }

  .page-map .m-welcome__brandmark,
  .page-gs .m-welcome__brandmark,
  .page-ns .m-welcome__brandmark {
    order: 3;
    justify-self: center;
    width: min(100%, 212px);
    margin: 14px auto 18px;
    transform: none;
  }

  .page-map .m-welcome__brandmark-frame,
  .page-gs .m-welcome__brandmark-frame,
  .page-ns .m-welcome__brandmark-frame {
    padding: 10px;
    border-radius: 28px;
  }

  .page-map .m-welcome__brandmark-frame::before,
  .page-gs .m-welcome__brandmark-frame::before,
  .page-ns .m-welcome__brandmark-frame::before {
    inset: 14px;
    border-radius: 20px;
  }

  .page-map .m-welcome__brandmark-image,
  .page-gs .m-welcome__brandmark-image,
  .page-ns .m-welcome__brandmark-image {
    border-radius: 20px;
  }

  .page-ns .m-welcome__title--stacked {
    max-width: none;
  }

  .page-open .m-welcome__brandmark {
    width: min(100%, 250px);
    margin: 14px auto 18px;
    transform: none;
  }

  .c-open-preview {
    padding: 16px;
  }

  .c-open-preview__grid,
  .c-open-preview__stats {
    grid-template-columns: 1fr;
  }

  .c-open-preview__logo-wrap {
    min-height: 108px;
  }

  .c-open-hero-stack__item {
    padding: 12px;
    border-radius: 18px;
  }

  .c-open-hero-stack__image {
    border-radius: 16px;
  }

  .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;
  }

  .c-stream--broadcast .c-stream__broadcast-shell {
    padding: 16px;
  }

  .c-stream--broadcast .c-stream__broadcast-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-stream--broadcast .c-stream__broadcast-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .c-stream--broadcast .c-stream__stage {
    min-height: auto;
  }

  .c-stream--broadcast .c-stream__stage strong {
    font-size: 1.08rem;
  }

  .c-stream--broadcast .c-stream__stage p,
  .c-stream--broadcast .c-stream__headline p {
    font-size: 0.8rem;
  }

  .c-stream--broadcast .c-stream__broadcast-legend {
    justify-content: flex-start;
  }

  .c-stream--broadcast .c-stream__app-preview-top,
  .c-stream--globe .c-stream__app-preview-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-stream--broadcast .c-stream__app-preview,
  .c-stream--globe .c-stream__app-preview {
    padding: 14px;
    border-radius: 24px;
  }

  .c-stream--globe .c-stream__globe-stage {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .c-stream--globe .c-stream__projection {
    min-height: 360px;
    order: -1;
  }

  .c-stream--globe .c-stream__projection-top {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 10px;
  }

  .c-stream--globe .c-stream__projection-kicker,
  .c-stream--globe .c-stream__projection-pill {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .c-stream--globe .c-stream__mode-card {
    padding: 16px;
    border-radius: 20px;
  }

  .c-stream--globe .c-stream__mode-card strong {
    font-size: 1.08rem;
  }

  .c-stream--globe .c-stream__mode-card p {
    font-size: 0.8rem;
  }

  .c-stream--globe .c-stream__beacon {
    padding: 7px 10px;
    gap: 8px;
  }

  .c-stream--globe .c-stream__beacon-label {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .c-stream--globe .c-stream__legend {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .c-stream--globe .c-stream__legend-item {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
}

@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;
  }

  .s-header__logo img {
    width: 112px;
  }

  .s-header__toggle {
    width: 42px;
    height: 42px;
  }

  .s-menu {
    inset: 74px 12px auto;
    padding: 14px;
    border-radius: 18px;
  }

  .s-menu__content {
    gap: 12px;
  }

  .s-menu__nav-link {
    font-size: 0.78rem;
  }

  .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;
    gap: 10px;
  }

  .m-welcome__hero {
    grid-template-columns: 1fr;
  }

  .m-welcome__brandmark {
    justify-self: stretch;
    width: min(100%, 200px);
    margin: 10px auto 0;
    transform: none;
  }

  .m-welcome__brandmark-frame {
    padding: 9px;
    border-radius: 24px;
  }

  .m-welcome__brandmark-frame::before {
    inset: 12px;
    border-radius: 18px;
  }

  .m-welcome__brandmark-image {
    border-radius: 18px;
  }

  .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-welcome__title {
    font-size: clamp(2.3rem, 10.6vw, 3.3rem);
    line-height: 0.96;
  }

  .m-welcome__eyebrow {
    margin-bottom: 12px;
    font-size: 0.62rem;
  }

  .m-welcome__subtitle {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .m-graph__title,
  .m-cta__title,
  .s-footer__title {
    font-size: clamp(1.85rem, 9.4vw, 2.6rem);
    line-height: 0.98;
  }

  .c-client-tile strong,
  .c-ui-box__title,
  .c-tile-article__copy,
  .c-tile-quote__copy {
    font-size: 1.02rem;
    line-height: 1.22;
  }

  .page-engine .m-welcome__wrap,
  .page-map .m-welcome__wrap,
  .page-gs .m-welcome__wrap,
  .page-ns .m-welcome__wrap {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .page-map .m-welcome__brandmark,
  .page-gs .m-welcome__brandmark,
  .page-ns .m-welcome__brandmark {
    width: min(100%, 188px);
  }

  .page-open .m-welcome__brandmark {
    width: min(100%, 214px);
  }

  .page-engine .module--story .m-story,
  .page-engine .module--graph .m-graph,
  .page-map .module--graph .m-graph,
  .page-gs .module--story .m-story,
  .page-gs .module--graph .m-graph,
  .page-ns .module--story .m-story,
  .page-ns .module--graph .m-graph {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .c-stream--broadcast .c-stream__broadcast-shell {
    padding: 12px;
  }

  .c-open-preview__card,
  .c-open-preview__stat {
    border-radius: 18px;
  }

  .c-open-preview__logo-wrap {
    min-height: 94px;
    padding: 12px;
  }

  .c-open-hero-stack {
    gap: 10px;
  }

  .c-stream--broadcast .c-stream__broadcast-grid {
    gap: 12px;
    margin-top: 14px;
  }

  .c-stream--broadcast .c-stream__app-preview,
  .c-stream--globe .c-stream__app-preview {
    margin-top: 16px;
    padding: 12px;
    border-radius: 22px;
  }

  .c-stream--broadcast .c-stream__app-preview-top,
  .c-stream--globe .c-stream__app-preview-top {
    margin-bottom: 12px;
  }

  .c-stream--broadcast .c-stream__app-preview-caption,
  .c-stream--globe .c-stream__app-preview-caption {
    font-size: 0.78rem;
  }

  .c-stream--broadcast .c-stream__app-preview-frame,
  .c-stream--globe .c-stream__app-preview-frame {
    border-radius: 18px;
  }

  .c-stream--broadcast .c-stream__stage {
    padding: 16px;
    border-radius: 20px;
  }

  .c-stream--broadcast .c-stream__mini-player-screen {
    min-height: 112px;
  }

  .c-stream--broadcast .c-stream__mini-player-caption,
  .c-stream--broadcast .c-stream__analysis-footer,
  .c-stream--broadcast .c-stream__headline-time,
  .c-stream--broadcast .c-stream__broadcast-kicker,
  .c-stream--broadcast .c-stream__broadcast-pill,
  .c-stream--broadcast .c-stream__stage-tag,
  .c-stream--broadcast .c-stream__broadcast-chip {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .c-stream--broadcast .c-stream__broadcast-pill,
  .c-stream--broadcast .c-stream__broadcast-chip {
    min-height: 28px;
    padding: 0 10px;
  }

  .c-stream.c-stream--globe {
    min-height: auto;
  }

  .c-stream--globe .c-stream__globe-stage {
    padding: 12px;
  }

  .c-stream--globe .c-stream__projection {
    min-height: 320px;
    border-radius: 22px;
  }

  .c-stream--globe .c-stream__projection-top {
    position: static;
    padding: 14px 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .c-stream--globe .c-stream__world-visual {
    inset: 42px 0 0;
    height: calc(100% - 42px);
  }

  .c-stream--globe .c-stream__beacon {
    padding: 6px 9px;
  }

  .c-stream--globe .c-stream__beacon--human {
    --x: 15%;
    --y: 34%;
  }

  .c-stream--globe .c-stream__beacon--infra {
    --x: 18%;
    --y: 74%;
  }

  .c-stream--globe .c-stream__beacon--financial {
    --x: 50%;
    --y: 16%;
  }

  .c-stream--globe .c-stream__beacon--telecom {
    --x: 84%;
    --y: 58%;
  }

  .c-stream--globe .c-stream__beacon-label {
    max-width: 92px;
    white-space: normal;
    line-height: 1.35;
  }

  .c-stream--globe .c-stream__legend {
    position: static;
    padding: 0 14px 14px;
    justify-content: flex-start;
  }

  .c-stream--globe .c-stream__legend-item {
    min-height: 26px;
  }

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

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