:root {
  --purple-900: #25105d;
  --purple-800: #352078;
  --purple-700: #4b2e83;
  --purple-600: #6840aa;
  --purple-500: #8a42d1;
  --blue-700: #005ed1;
  --blue-600: #0077ff;
  --blue-500: #2795ff;
  --pink-700: #d91c7c;
  --pink-600: #ff309a;
  --pink-500: #ff5eb1;
  --navy-950: #050a22;
  --navy-900: #08102e;
  --navy-850: #0a1235;
  --navy-800: #101b47;
  --navy-700: #17265b;
  --ink-950: #11162c;
  --ink-900: #1a2038;
  --ink-800: #2b2d33;
  --ink-700: #41465b;
  --ink-600: #5d6379;
  --ink-500: #747b91;
  --gray-400: #a7adbc;
  --gray-300: #c9ced9;
  --gray-200: #dde1e9;
  --gray-150: #e9ecf2;
  --gray-100: #f0f2f7;
  --gray-050: #f5f7fb;
  --white: #fff;
  --gradient-brand: linear-gradient(120deg, var(--blue-600) 0%, var(--purple-500) 48%, var(--pink-600) 100%);
  --gradient-deep: linear-gradient(135deg, #111c62 0%, #4b2e83 58%, #9c2ec7 100%);
  --gradient-night: linear-gradient(135deg, #050a22 0%, #0c1742 55%, #281363 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0, 119, 255, .08), rgba(75, 46, 131, .08) 52%, rgba(255, 48, 154, .08));
  --font-display: 'Poppins', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --shadow-xs: 0 2px 8px rgba(15, 24, 62, .06);
  --shadow-sm: 0 8px 24px rgba(15, 24, 62, .08);
  --shadow-md: 0 18px 50px rgba(10, 18, 53, .12);
  --shadow-lg: 0 30px 80px rgba(5, 10, 34, .2);
  --shadow-brand: 0 18px 44px rgba(75, 46, 131, .24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 76px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink-950);
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: -.03em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  color: var(--ink-600);
}

::selection {
  color: var(--white);
  background: var(--purple-700);
}

:focus-visible {
  outline: 3px solid rgba(0, 119, 255, .42);
  outline-offset: 3px;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink-950);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.topbar {
  position: relative;
  z-index: 40;
  min-height: 34px;
  color: #dbe3ff;
  background: var(--navy-950);
  font-size: .72rem;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1f3ff;
}

.topbar__status i,
.status-badge i,
.signal-card__state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ee8b1;
  box-shadow: 0 0 0 5px rgba(94, 232, 177, .1), 0 0 16px rgba(94, 232, 177, .75);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(22, 32, 76, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 26px rgba(5, 10, 34, .04);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 43px;
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand__text strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: .045em;
}

.brand__text span {
  margin-top: 5px;
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .125em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header__link {
  position: relative;
  color: var(--ink-700);
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
}

.site-header__link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  content: '';
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-header__link:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 13px;
  color: var(--white);
  background: var(--navy-900);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform var(--transition);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--small {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: .8rem;
}

.button--gradient {
  color: var(--white);
  background: var(--gradient-brand);
  box-shadow: 0 14px 32px rgba(115, 55, 184, .24);
}

.button--gradient:hover {
  box-shadow: 0 18px 38px rgba(115, 55, 184, .34);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .13);
}

.button--light {
  color: var(--purple-800);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(5, 10, 34, .22);
}

.button--light:hover {
  color: var(--blue-700);
  box-shadow: 0 22px 48px rgba(5, 10, 34, .3);
}

.button--soft {
  border: 1px solid var(--gray-200);
  color: var(--ink-700);
  background: var(--gray-050);
}

.button--soft:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gradient-night);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 16%, rgba(0, 119, 255, .16), transparent 29%), radial-gradient(circle at 88% 22%, rgba(255, 48, 154, .12), transparent 28%);
  content: '';
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(127, 155, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(127, 155, 255, .12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .7) 70%, transparent 100%);
  pointer-events: none;
}

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

.hero__glow--one {
  top: 18%;
  left: -11%;
  width: 360px;
  height: 360px;
  background: rgba(0, 119, 255, .09);
}

.hero__glow--two {
  right: -11%;
  bottom: 8%;
  width: 430px;
  height: 430px;
  background: rgba(255, 48, 154, .07);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  min-height: 700px;
  align-items: center;
  gap: clamp(45px, 6vw, 88px);
  padding-top: 84px;
  padding-bottom: 72px;
}

.hero__content {
  max-width: 650px;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 6px 14px;
  border: 1px solid rgba(84, 161, 255, .45);
  border-radius: var(--radius-pill);
  color: #cfe5ff;
  background: rgba(0, 119, 255, .14);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(115deg, #fff 0%, #b8d8ff 24%, #b991f2 62%, #ff8bc8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #c6cee9 !important;
  font-size: 1.02rem;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: #aeb9db;
  font-size: .72rem;
  font-weight: 500;
}

.hero__principles span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__principles svg {
  width: 15px;
  height: 15px;
  color: var(--blue-500);
}

.signal-panel {
  position: relative;
  min-width: 0;
}

.signal-panel__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
}

.signal-panel__orb--one {
  top: -40px;
  right: 40px;
  width: 220px;
  height: 220px;
  background: rgba(140, 58, 213, .22);
}

.signal-panel__orb--two {
  bottom: -30px;
  left: 20px;
  width: 180px;
  height: 180px;
  background: rgba(0, 119, 255, .17);
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 22px;
  border: 1px solid rgba(119, 148, 239, .28);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(17, 32, 91, .91), rgba(16, 23, 72, .94));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
}

.signal-card::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 66, 209, .2), transparent 68%);
  content: '';
}

.signal-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.signal-card__head > div {
  display: grid;
  gap: 4px;
}

.signal-card__kicker {
  color: #8393c5;
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-card__head strong {
  color: #f5f7ff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.signal-card__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(94, 232, 177, .14);
  border-radius: var(--radius-pill);
  color: #baf7dd;
  background: rgba(94, 232, 177, .08);
  font-size: .61rem;
  font-weight: 600;
  white-space: nowrap;
}

.signal-card__state i {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px rgba(94, 232, 177, .9);
}

.signal-chart {
  position: relative;
  height: 278px;
  margin-top: 14px;
}

.signal-chart svg {
  width: 100%;
  height: 100%;
}

.signal-chart__grid path {
  fill: none;
  stroke: rgba(136, 158, 226, .14);
  stroke-width: 1;
}

.signal-chart__line {
  fill: none;
  stroke: url(#chart-line);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-chart__line--glow {
  opacity: .35;
  stroke-width: 13;
  filter: url(#chart-glow);
}

.signal-chart__points circle {
  fill: #fff;
  stroke: #9c4be0;
  stroke-width: 4;
  filter: drop-shadow(0 0 7px rgba(156, 75, 224, .8));
}

.signal-card__legend {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(121, 148, 224, .15);
  color: #98a5c9;
  font-size: .58rem;
}

.signal-card__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot--blue { background: var(--blue-600); }
.dot--purple { background: var(--purple-500); }
.dot--pink { background: var(--pink-600); }

.signal-panel__insights {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.signal-panel__insights article {
  display: flex;
  min-width: 0;
  min-height: 83px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(119, 148, 239, .25);
  border-radius: 16px;
  background: rgba(7, 15, 51, .82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .19), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(14px);
}

.insight-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #72b5ff;
  background: rgba(0, 119, 255, .15);
}

.insight-icon svg {
  width: 20px;
  height: 20px;
}

.insight-icon--brand {
  overflow: hidden;
  background: rgba(255, 255, 255, .045);
}

.insight-icon--brand img {
  width: 30px;
  height: auto;
}

.insight-icon--pink {
  color: #ff7fc1;
  background: rgba(255, 48, 154, .13);
}

.signal-panel__insights article > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.signal-panel__insights small {
  color: #7f8db7;
  font-size: .55rem;
  line-height: 1.2;
}

.signal-panel__insights strong {
  overflow: hidden;
  color: #eef2ff;
  font-family: var(--font-display);
  font-size: .69rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.hero__capabilities {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid rgba(133, 151, 213, .15);
  color: #aeb9dd;
  font-size: .72rem;
  font-weight: 600;
}

.hero__capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hero__capabilities svg {
  width: 18px;
  height: 18px;
  color: #70b3ff;
}

.hero__capabilities > i {
  width: 1px;
  height: 24px;
  background: rgba(160, 176, 225, .2);
}

.services {
  position: relative;
  overflow: hidden;
  padding: 118px 0 124px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fd 100%);
}

.services::before {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: radial-gradient(rgba(70, 83, 132, .12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 76%, transparent);
  content: '';
  pointer-events: none;
}

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

.services__orb--one {
  top: 70px;
  right: -130px;
  width: 370px;
  height: 370px;
  background: rgba(138, 66, 209, .055);
}

.services__orb--two {
  bottom: 30px;
  left: -150px;
  width: 330px;
  height: 330px;
  background: rgba(0, 119, 255, .055);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading h2 span {
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading > p {
  margin: 0;
  padding-bottom: 7px;
  font-size: .95rem;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--purple-700);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  content: '';
}

.eyebrow--light {
  color: #dbe3ff;
}

.services__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 275px;
  padding: 28px 27px;
  border: 1px solid var(--gray-150);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-card--request {
  display: flex;
  grid-column: span 6;
  min-height: 430px;
  flex-direction: column;
  border-color: rgba(99, 72, 177, .17);
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 247, 255, .96));
  box-shadow: 0 18px 48px rgba(15, 24, 62, .095);
}

.service-card--future {
  grid-column: span 3;
  min-height: 285px;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-brand);
  content: '';
  transform: scaleX(.38);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card::after {
  position: absolute;
  top: -75px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--card-glow, rgba(138, 66, 209, .06));
  content: '';
  transition: transform 260ms ease;
}

.service-card:hover {
  border-color: rgba(104, 64, 170, .22);
  box-shadow: 0 24px 58px rgba(16, 27, 71, .12);
  transform: translateY(-6px);
}

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

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

.service-card--blue { --card-glow: rgba(0, 119, 255, .075); }
.service-card--purple { --card-glow: rgba(138, 66, 209, .075); }
.service-card--pink { --card-glow: rgba(255, 48, 154, .065); }

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 27px;
}

.service-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-700);
  background: var(--gradient-soft);
  box-shadow: inset 0 0 0 1px rgba(88, 73, 152, .08);
}

.service-card--blue .service-card__icon { color: var(--blue-700); }
.service-card--pink .service-card__icon { color: var(--pink-700); }

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__status {
  padding: 6px 10px;
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-pill);
  color: var(--ink-500);
  background: var(--gray-050);
  font-family: var(--font-display);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-card__status--request {
  border-color: rgba(0, 119, 255, .18);
  color: var(--blue-700);
  background: rgba(0, 119, 255, .075);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  font-size: .88rem;
  line-height: 1.78;
}

.service-card__highlight {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(75, 46, 131, .12);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 119, 255, .055), rgba(75, 46, 131, .065) 56%, rgba(255, 48, 154, .04));
}

.service-card__highlight strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
}

.service-card__highlight p {
  color: var(--ink-600);
  font-size: .78rem;
  line-height: 1.68;
}



.service-card__web-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(75, 46, 131, .12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(8, 16, 46, .97), rgba(25, 24, 86, .95) 58%, rgba(75, 46, 131, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 32px rgba(18, 22, 67, .12);
}

.service-card__web-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 11px;
}

.service-card__web-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
}

.service-card__web-layout {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 9px;
}

.service-card__web-image {
  min-height: 74px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 119, 255, .85), rgba(138, 66, 209, .9) 54%, rgba(255, 48, 154, .78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.service-card__web-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.service-card__web-copy i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.service-card__web-copy i:nth-child(1) { width: 82%; background: rgba(255, 255, 255, .65); }
.service-card__web-copy i:nth-child(2) { width: 100%; }
.service-card__web-copy i:nth-child(3) { width: 66%; }

.service-card__web-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.service-card__web-properties i {
  display: block;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 7px;
  background: rgba(255, 255, 255, .09);
}

.service-card__cta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 26px;
}

.button--service {
  align-self: flex-start;
  margin-top: 0;
  padding: 12px 18px;
  color: var(--white);
  background: var(--gradient-brand);
  box-shadow: 0 12px 28px rgba(99, 55, 176, .22);
}

.button--service:hover {
  box-shadow: 0 17px 36px rgba(99, 55, 176, .3);
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: var(--white);
  background: var(--gradient-deep);
}

.contact-band__mesh {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.contact-band__glow {
  position: absolute;
  top: -180px;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 48, 154, .18);
  filter: blur(20px);
  pointer-events: none;
}

.contact-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.contact-band__mark {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 25px;
  background: rgba(5, 10, 34, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.contact-band__mark img {
  width: 53px;
  height: auto;
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band h2 {
  margin-bottom: 11px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.contact-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #dce2ff;
}

.site-footer {
  padding: 30px 0;
  color: #aeb8d8;
  background: var(--navy-950);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand--inverse .brand__text strong {
  color: var(--white);
}

.brand--inverse .brand__text span {
  color: #75b7ff;
}

.site-footer p {
  margin: 0;
  color: #8f9abe;
  font-size: .72rem;
}




/* Contact form */
body.contact-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 32px 20px;
}

.contact-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 29, .76);
  backdrop-filter: blur(12px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 42px;
  border: 1px solid rgba(109, 91, 181, .18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(247, 247, 255, .985));
  box-shadow: 0 36px 100px rgba(3, 8, 29, .38);
}

.contact-modal__panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: var(--gradient-brand);
  content: '';
}

.contact-modal__close {
  position: absolute;
  z-index: 2;
  top: 19px;
  right: 19px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 13px;
  background: rgba(255, 255, 255, .86);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.contact-modal__close:hover {
  border-color: rgba(75, 46, 131, .3);
  background: var(--white);
  transform: translateY(-1px);
}

.contact-modal__close span,
.contact-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-800);
  content: '';
}

.contact-modal__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-modal__heading {
  padding-right: 54px;
}

.contact-modal__heading .eyebrow {
  margin-bottom: 14px;
}

.contact-modal__heading h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.contact-modal__heading p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: .92rem;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 19px;
  margin-top: 30px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .94);
  box-shadow: inset 0 1px 2px rgba(15, 24, 62, .025);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 13px 15px;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #969db0;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--gray-300);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 119, 255, .58);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 119, 255, .1);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 48px;
}

.select-wrap select:invalid {
  color: #8f97ab;
}

.select-wrap select option {
  color: var(--ink-900);
}

.select-wrap > svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 19px;
  height: 19px;
  color: var(--purple-700);
  pointer-events: none;
  transform: translateY(-50%);
}

.form-field__error {
  display: none;
  color: #a3155d;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form .form-field__error[data-fs-active] {
  display: block;
}

.contact-form [data-fs-field][aria-invalid="true"] {
  border-color: rgba(217, 28, 124, .58) !important;
  box-shadow: 0 0 0 4px rgba(217, 28, 124, .09) !important;
}

.contact-form__status {
  display: none;
  padding: 13px 15px;
  border: 1px solid rgba(0, 119, 255, .18);
  border-radius: 13px;
  color: var(--blue-700);
  background: rgba(0, 119, 255, .07);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-form .contact-form__status[data-fs-active] {
  display: block;
}

.contact-form__status--success {
  border-color: rgba(30, 157, 110, .22);
  color: #13774f;
  background: rgba(30, 157, 110, .08);
}

.contact-form__status--error {
  border-color: rgba(217, 28, 124, .22);
  color: #a3155d;
  background: rgba(217, 28, 124, .07);
}

.contact-form__submit {
  width: 100%;
  margin-top: 2px;
}

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

@media (max-width: 1120px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 42px;
  }

  .signal-chart {
    height: 245px;
  }

  .signal-panel__insights {
    grid-template-columns: 1fr 1fr;
  }

  .signal-panel__insights article:first-child {
    grid-column: 1 / -1;
  }

  .service-card--request,
  .service-card--future {
    grid-column: span 6;
  }

  .service-card--request {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 60px;
    padding-top: 78px;
    padding-bottom: 62px;
  }

  .hero__content {
    max-width: 760px;
  }

  .signal-panel {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .contact-band__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-band__inner > .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > span:first-child {
    display: none;
  }

  .site-header__link {
    display: none;
  }

  .brand img {
    width: 38px;
  }

  .brand__text strong {
    font-size: 1.4rem;
  }

  .brand__text span {
    font-size: .56rem;
  }

  .site-header__nav {
    gap: 10px;
  }

  .button--small {
    min-height: 40px;
    padding: 10px 15px;
  }

  .hero__grid {
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero__lead {
    font-size: .92rem;
    line-height: 1.75;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__principles {
    display: grid;
    gap: 10px;
  }

  .signal-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .signal-card__head {
    align-items: center;
  }

  .signal-card__state {
    padding: 5px 8px;
    font-size: .54rem;
  }

  .signal-chart {
    height: 205px;
    margin-top: 8px;
  }

  .signal-card__legend {
    justify-content: center;
    gap: 13px;
  }

  .signal-panel__insights {
    grid-template-columns: 1fr;
  }

  .signal-panel__insights article:first-child {
    grid-column: auto;
  }

  .hero__capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 22px 0;
  }

  .hero__capabilities span {
    justify-content: center;
  }

  .hero__capabilities > i {
    display: none;
  }

  .services {
    padding: 86px 0 90px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .services__grid {
    gap: 15px;
  }

  .service-card,
  .service-card--request,
  .service-card--future {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 24px 22px;
  }

  .service-card--request {
    min-height: 0;
  }

  .service-card__cta {
    padding-top: 24px;
  }

  .button--service {
    width: 100%;
  }

  .contact-band {
    padding: 64px 0;
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .contact-band__mark {
    margin-inline: auto;
  }

  .contact-band__inner > .button {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .contact-band .eyebrow {
    justify-content: center;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-modal {
    align-items: end;
    padding: 14px;
  }

  .contact-modal__panel {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 34px 20px 24px;
    border-radius: 24px;
  }

  .contact-modal__panel::before {
    border-radius: 24px 24px 0 0;
  }

  .contact-modal__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .contact-modal__heading {
    padding-right: 46px;
  }

  .contact-modal__heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .contact-form {
    gap: 16px;
    margin-top: 24px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand__text span {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header__nav .button svg {
    display: none;
  }

  .site-header__nav .button {
    padding-inline: 13px;
  }

  .signal-card__head {
    display: grid;
    gap: 10px;
  }

  .signal-card__state {
    justify-self: start;
  }

  .signal-card__legend {
    flex-wrap: wrap;
  }
}

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

/* Multilingual publication layout */
:root { --site-shell-height: 110px; }
html { scroll-padding-top: calc(var(--site-shell-height) + 16px); }
#inicio, #servicios, #contenido { scroll-margin-top: calc(var(--site-shell-height) + 16px); }
.site-shell { position: sticky; z-index: 200; top: 0; width: 100%; transition: box-shadow 180ms ease; }
.site-shell.is-scrolled { box-shadow: 0 16px 38px rgba(5,10,34,.16); }
.site-shell .topbar, .site-shell .site-header { position: relative; top: auto; }
.site-shell .topbar { z-index: 2; }
.site-shell .site-header { z-index: 1; box-shadow: none; }
.site-header__nav { gap: 16px; }

.language-switcher { position: relative; z-index: 20; }
.language-switcher__button {
  display: inline-flex;
  min-width: 86px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px 7px 8px;
  border: 1px solid rgba(25,35,74,.13);
  border-radius: 14px;
  color: var(--ink-700);
  background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,247,252,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 5px 16px rgba(20,28,72,.06);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.language-switcher__button:hover,
.language-switcher.is-open .language-switcher__button {
  border-color: rgba(75,46,131,.3);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20,28,72,.12), inset 0 1px 0 rgba(255,255,255,.95);
  transform: translateY(-1px);
}
.language-switcher__button:focus-visible {
  outline: 3px solid rgba(0,119,255,.2);
  outline-offset: 2px;
}
.language-switcher__flag-frame {
  position: relative;
  display: grid;
  width: 36px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(5,10,34,.17);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(5,10,34,.16), inset 0 0 0 1px rgba(255,255,255,.35);
  transform: translateZ(0);
  transition: transform var(--transition), box-shadow var(--transition);
}
.language-switcher__flag-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,rgba(255,255,255,.18),transparent 42%,rgba(5,10,34,.05));
  content: '';
}
.language-switcher__flag-frame--current { width: 30px; height: 20px; border-radius: 4px; }
.language-switcher__flag-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.language-switcher__button:hover .language-switcher__flag-frame,
.language-switcher__menu button:hover .language-switcher__flag-frame,
.language-switcher__menu button:focus-visible .language-switcher__flag-frame {
  box-shadow: 0 5px 13px rgba(5,10,34,.2), inset 0 0 0 1px rgba(255,255,255,.35);
  transform: scale(1.04);
}
.language-switcher__code {
  color: var(--ink-700);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.language-switcher__button > svg { width: 14px; height: 14px; color: var(--ink-500); transition: transform var(--transition); }
.language-switcher.is-open .language-switcher__button > svg { transform: rotate(180deg); }
.language-switcher__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 11px);
  right: 0;
  width: 270px;
  padding: 9px;
  border: 1px solid rgba(25,35,74,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.988);
  box-shadow: 0 26px 65px rgba(5,10,34,.22), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
}
.language-switcher__menu[hidden] { display: none; }
.language-switcher__menu::before {
  position: absolute;
  top: -6px;
  right: 25px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(25,35,74,.12);
  border-left: 1px solid rgba(25,35,74,.12);
  background: var(--white);
  content: '';
  transform: rotate(45deg);
}
.language-switcher__menu button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: 40px minmax(0,1fr) 34px;
  align-items: center;
  gap: 11px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--ink-700);
  background: transparent;
  text-align: left;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.language-switcher__menu button + button { margin-top: 2px; }
.language-switcher__menu button:hover,
.language-switcher__menu button:focus-visible {
  border-color: rgba(75,46,131,.1);
  color: var(--purple-800);
  background: linear-gradient(110deg,rgba(0,119,255,.075),rgba(138,66,209,.09),rgba(255,48,154,.055));
  box-shadow: 0 7px 18px rgba(20,28,72,.06);
  transform: translateX(2px);
}
.language-switcher__menu button:focus-visible { outline: 2px solid rgba(0,119,255,.24); outline-offset: 1px; }
.language-switcher__menu button[aria-selected="true"] {
  border-color: rgba(75,46,131,.17);
  color: var(--purple-800);
  background: linear-gradient(110deg,rgba(0,119,255,.09),rgba(138,66,209,.105),rgba(255,48,154,.065));
  box-shadow: inset 3px 0 0 var(--blue-600), 0 7px 18px rgba(20,28,72,.05);
}
.language-switcher__option-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  overflow: visible;
  font: inherit;
  white-space: normal;
}
.language-switcher__option-copy strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-switcher__option-copy small {
  overflow: hidden;
  color: var(--ink-500);
  font-family: var(--font-body);
  font-size: .61rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-switcher__option-code {
  display: grid;
  min-width: 31px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(25,35,74,.09);
  border-radius: 999px;
  color: var(--ink-500);
  background: rgba(247,248,252,.9);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .07em;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.language-switcher__menu button[aria-selected="true"] .language-switcher__option-code {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(115deg,var(--blue-600),var(--purple-600),var(--pink-500));
  box-shadow: 0 5px 12px rgba(93,58,185,.22);
}

.hero { display: grid; min-height: calc(100svh - var(--site-shell-height)); grid-template-rows: minmax(0,1fr) auto; }
.hero__grid { grid-template-columns: minmax(0,.96fr) minmax(470px,1.04fr); min-height: 0; gap: clamp(34px,4.4vw,68px); padding-top: clamp(30px,4.2vh,48px); padding-bottom: clamp(28px,3.8vh,44px); }
.hero__content { max-width: 610px; }
.status-badge { margin-bottom: 17px; }
.hero h1 { margin-bottom: 20px; font-size: clamp(2.85rem,3.7vw,4rem); line-height: 1.06; }
.hero h1 .hero__title-lead { color: var(--white); background: none; -webkit-text-fill-color: currentColor; }
.hero h1 .hero__title-accent { color: transparent; background: linear-gradient(115deg,#fff 0%,#b8d8ff 24%,#b991f2 62%,#ff8bc8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { margin-bottom: 25px; font-size: .96rem; line-height: 1.72; }
.hero__principles { gap: 10px 18px; margin-top: 22px; }
.signal-card { padding: 22px 24px 17px; }
.signal-card__summary { position: relative; z-index: 2; display: flex; min-height: 50px; align-items: flex-end; gap: 11px; margin-top: 12px; padding: 10px 12px; border: 1px solid rgba(121,148,224,.13); border-radius: 13px; background: linear-gradient(105deg,rgba(0,119,255,.08),rgba(138,66,209,.06),rgba(255,48,154,.04)); }
.signal-card__summary > div { display: grid; gap: 2px; }
.signal-card__summary small { color: #8796c4; font-size: .55rem; font-weight: 600; }
.signal-card__summary strong { color: #f7f8ff; font-family: var(--font-display); font-size: 1.35rem; line-height: 1; letter-spacing: -.035em; }
.signal-card__delta { align-self: center; padding: 4px 8px; border: 1px solid rgba(94,232,177,.16); border-radius: 999px; color: #aef2d4; background: rgba(94,232,177,.08); font-size: .58rem; font-weight: 700; }
.signal-card__period { margin-left: auto; align-self: center; white-space: nowrap; }
.signal-chart { height: 238px; margin-top: 3px; }
.signal-chart__axis-labels text { fill: #7483ad; font-family: var(--font-body); font-size: 10px; font-weight: 600; }
.signal-chart__grid path { stroke: rgba(136,158,226,.13); }
.signal-chart__volume rect { fill: url(#volume-bars); }
.signal-chart__benchmark { fill: none; stroke: rgba(183,195,232,.48); stroke-width: 2; stroke-dasharray: 6 7; stroke-linecap: round; }
.signal-chart__area { fill: url(#chart-area); }
.signal-chart__line { stroke-width: 4; }
.signal-chart__line--glow { opacity: .28; stroke-width: 11; }
.signal-chart__cursor { stroke: rgba(255,255,255,.18); stroke-width: 1; stroke-dasharray: 3 5; }
.signal-chart__latest-glow { fill: rgba(255,48,154,.2)!important; stroke: none!important; filter: url(#chart-glow); }
.signal-chart__latest circle:last-child { fill: #fff; stroke: #ff53ae; stroke-width: 3; }
.signal-chart__callout rect { fill: rgba(7,15,51,.92); stroke: rgba(255,83,174,.46); stroke-width: 1; }
.signal-chart__callout text { fill: #f7f8ff; font-family: var(--font-display); font-size: 11px; font-weight: 700; }
.signal-card__legend { justify-content: space-between; gap: 12px; padding-top: 12px; font-size: .53rem; }
.dot--gradient { background: var(--gradient-brand); }
.dot--line { width: 12px; height: 2px; border-radius: 0; background: repeating-linear-gradient(90deg,rgba(183,195,232,.9) 0 3px,transparent 3px 5px); }
.dot--bars { width: 10px; height: 8px; border-radius: 2px; background: linear-gradient(90deg,rgba(95,140,255,.35) 0 25%,transparent 25% 38%,rgba(95,140,255,.62) 38% 63%,transparent 63% 76%,rgba(95,140,255,.9) 76%); }
.signal-panel__insights { grid-template-columns: 1.05fr .9fr 1fr; margin-top: 11px; }
.signal-panel__insights article, .signal-panel__insights article:first-child { grid-column: auto; min-height: 70px; padding: 11px 12px; }
.hero__capabilities { min-height: 58px; }

.services { padding: 82px 0 96px; }
.section-heading { grid-template-columns: minmax(0,1.05fr) minmax(360px,.72fr); align-items: stretch; gap: clamp(38px,5vw,76px); margin-bottom: 38px; }
.section-heading__copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.section-heading h2 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.25rem,3.6vw,3.55rem); }
.section-heading__lead { color: var(--ink-950)!important; background: none!important; -webkit-text-fill-color: currentColor; }
.section-heading__intro { max-width: 710px; margin: 0; padding: 0; font-size: .94rem; line-height: 1.78; }
.services-visual { position: relative; overflow: hidden; min-height: 286px; padding: 22px; border: 1px solid rgba(97,73,174,.16); border-radius: 24px; background: linear-gradient(145deg,rgba(8,16,46,.98),rgba(24,24,84,.97) 58%,rgba(68,31,123,.96)); box-shadow: 0 24px 60px rgba(19,24,67,.18), inset 0 1px 0 rgba(255,255,255,.07); }
.services-visual::before { position: absolute; top: -90px; right: -70px; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle,rgba(255,48,154,.2),transparent 68%); content: ''; }
.services-visual::after { position: absolute; bottom: -100px; left: -60px; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle,rgba(0,119,255,.18),transparent 68%); content: ''; }
.services-visual__head { position: relative; z-index: 4; display: grid; gap: 3px; }
.services-visual__head span { color: #8e9dcc; font-size: .59rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.services-visual__head strong { color: #f4f6ff; font-family: var(--font-display); font-size: .95rem; line-height: 1.35; }
.services-visual__canvas { position: relative; z-index: 3; height: 166px; margin-top: 3px; }
.services-visual__ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(126,151,232,.14); border-radius: 50%; transform: translate(-50%,-50%); }
.services-visual__ring--one { width: 160px; height: 160px; }
.services-visual__ring--two { width: 104px; height: 104px; border-style: dashed; border-color: rgba(177,130,240,.24); }
.services-visual__line { position: absolute; z-index: 1; top: 50%; left: 50%; width: 92px; height: 1px; background: linear-gradient(90deg,rgba(121,149,235,.85),rgba(121,149,235,.08)); transform-origin: left center; }
.services-visual__line--one { transform: rotate(-145deg); }.services-visual__line--two { transform: rotate(-34deg); }.services-visual__line--three { width: 64px; transform: rotate(90deg); }
.services-visual__center, .services-visual__node { position: absolute; z-index: 3; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(127,155,239,.22); box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.services-visual__center { top: 50%; left: 50%; width: 72px; height: 72px; flex-direction: column; gap: 1px; border-radius: 22px; color: #fff; background: linear-gradient(145deg,rgba(0,119,255,.22),rgba(138,66,209,.28),rgba(255,48,154,.16)); transform: translate(-50%,-50%); }
.services-visual__center img { width: 27px; height: auto; }.services-visual__center b { font-family: var(--font-display); font-size: .58rem; letter-spacing: .08em; }
.services-visual__node { min-height: 35px; gap: 6px; padding: 7px 10px; border-radius: 11px; color: #dae3ff; background: rgba(7,15,51,.84); }
.services-visual__node svg { width: 14px; height: 14px; color: #6eb4ff; }.services-visual__node b { font-family: var(--font-display); font-size: .56rem; font-weight: 600; white-space: nowrap; }
.services-visual__node--market { top: 18px; left: 8px; }.services-visual__node--digital { top: 22px; right: 2px; }.services-visual__node--operations { right: auto; bottom: 2px; left: 50%; transform: translateX(-50%); }
.services-visual__foot { position: relative; z-index: 4; display: flex; align-items: center; gap: 8px; padding-top: 9px; border-top: 1px solid rgba(126,151,232,.14); color: #9eabd0; font-size: .58rem; font-weight: 600; }
.services-visual__foot i { width: 6px; height: 6px; border-radius: 50%; background: #5ee8b1; box-shadow: 0 0 12px rgba(94,232,177,.7); }
.service-card--request { min-height: 440px; }.service-card__highlight { margin-bottom: 0; }.service-card__cta { padding-top: 25px; }

@media (min-width:901px) and (max-height:900px) {
  .hero__grid { gap: 36px; padding-top: 22px; padding-bottom: 20px; }
  .status-badge { min-height: 27px; margin-bottom: 12px; padding-block: 4px; }
  .hero h1 { margin-bottom: 15px; font-size: clamp(2.6rem,3.15vw,3.45rem); }
  .hero__lead { margin-bottom: 20px; font-size: .9rem; line-height: 1.62; }
  .button { min-height: 45px; padding-block: 11px; }
  .hero__principles { margin-top: 16px; }
  .signal-card { padding: 17px 20px 14px; }.signal-card__head strong { font-size: .9rem; }
  .signal-card__summary { min-height: 42px; margin-top: 8px; padding: 7px 10px; }.signal-card__summary strong { font-size: 1.12rem; }
  .signal-chart { height: 194px; }.signal-card__legend { padding-top: 9px; }
  .signal-panel__insights article { min-height: 61px; padding: 9px 10px; }.insight-icon { width: 34px; height: 34px; }.hero__capabilities { min-height: 52px; }
}
@media (max-width:1120px) {
  .site-header__nav { gap: 12px; }
  .hero__grid { grid-template-columns: minmax(0,.95fr) minmax(425px,1.05fr); gap: 36px; }.hero h1 { font-size: clamp(2.7rem,4.2vw,3.65rem); }.signal-chart { height: 220px; }
  .signal-panel__insights { grid-template-columns: repeat(3,minmax(0,1fr)); }.signal-panel__insights article:first-child { grid-column: auto; }
  .section-heading { grid-template-columns: minmax(0,1fr) minmax(330px,.72fr); gap: 34px; }.services-visual { min-height: 272px; }
}
@media (max-width:900px) {
  .hero { min-height: 0; }.hero__grid { grid-template-columns: 1fr; gap: 52px; padding-top: 58px; padding-bottom: 54px; }.hero__content { max-width: 760px; }.hero h1 { max-width: 720px; font-size: clamp(3rem,8vw,4.4rem); }.signal-panel { width: min(100%,700px); }.signal-chart { height: 270px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }.services-visual { width: min(100%,680px); min-height: 278px; }.section-heading__intro { max-width: 680px; }
}
@media (max-width:740px) {
  .site-header__link { display: none; }.site-header__nav { gap: 9px; }.language-switcher__button { min-width: 68px; }.hero__grid { padding-top: 50px; }.signal-card__legend { flex-wrap: wrap; justify-content: flex-start; }.signal-panel__insights { grid-template-columns: 1fr; }.services { padding-top: 74px; }
}
@media (max-width:680px) {
  .topbar,.topbar__inner { min-height: 31px; }.site-header__inner { min-height: 66px; gap: 12px; }.brand { gap: 8px; }.brand img { width: 35px; }.brand__text strong { font-size: 1.25rem; }.brand__text span { display: none; }
  .language-switcher__button { min-width: 61px; min-height: 39px; gap: 6px; padding-inline: 9px; }.language-switcher__menu { position: fixed; top: calc(var(--site-shell-height) - 2px); right: 15px; width: min(240px,calc(100vw - 30px)); }.language-switcher__menu::before { display: none; }
  .site-header__nav .button--small { min-height: 39px; padding: 10px 13px; }.hero__grid { gap: 44px; padding-top: 44px; padding-bottom: 44px; }.hero h1 { font-size: clamp(2.55rem,11.7vw,3.8rem); }
  .signal-card__summary { flex-wrap: wrap; }.signal-card__period { width: 100%; margin-left: 0; }.signal-chart { height: 215px; }.services-visual { min-height: 270px; padding: 20px; }.services-visual__node--market { left: 0; }.services-visual__node--digital { right: 0; }.services-visual__node--operations { right: auto; left: 50%; }
}
@media (max-width:480px) {
  .brand__text strong { font-size: 1.15rem; }.language-switcher__code { display: none; }.language-switcher__button { min-width: 46px; padding-inline: 8px; }.site-header__nav .button--small svg { display: none; }.site-header__nav .button--small { max-width: 118px; padding-inline: 11px; font-size: .72rem; }
  .hero h1 { font-size: clamp(2.35rem,11.5vw,3.25rem); }.hero__actions { display: grid; }.hero__actions .button { width: 100%; }.signal-card { padding: 19px 15px 15px; }.signal-card__head { gap: 10px; }.signal-card__state { white-space: normal; text-align: center; }.signal-chart { height: 188px; }.signal-chart__axis-labels text { font-size: 8px; }
  .services-visual__canvas { height: 178px; }.services-visual__ring--one { width: 142px; height: 142px; }.services-visual__line { width: 76px; }.services-visual__line--three { width: 70px; }.services-visual__node { padding: 6px 8px; }.services-visual__node b { font-size: .51rem; }.services-visual__node--market { top: 12px; }.services-visual__node--digital { top: 15px; }.services-visual__node--operations { bottom: 2px; }
}
@media (max-width:360px) {
  .brand__text { display: none; }.site-header__nav { margin-left: auto; }.site-header__nav .button--small { max-width: 105px; font-size: .68rem; }.language-switcher__menu { right: 12px; width: calc(100vw - 24px); }
}

/* Corporate footer and legal information */
body.legal-modal-open {
  overflow: hidden;
}

.contact-form__privacy {
  margin: -1px 0 0;
  color: var(--ink-500);
  font-size: .68rem;
  line-height: 1.65;
}

.inline-legal-link {
  display: inline;
  padding: 0;
  border: 0;
  color: var(--purple-700);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(104, 64, 170, .35);
  text-underline-offset: 3px;
}

.inline-legal-link:hover,
.inline-legal-link:focus-visible {
  color: var(--blue-700);
  text-decoration-color: currentColor;
}

.site-footer {
  padding: 0;
  border-top: 1px solid rgba(124, 142, 203, .13);
  background:
    radial-gradient(circle at 8% 5%, rgba(0, 119, 255, .09), transparent 30%),
    radial-gradient(circle at 88% 25%, rgba(176, 64, 208, .09), transparent 34%),
    var(--navy-950);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: start;
  gap: 34px 56px;
  padding-top: 42px;
  padding-bottom: 24px;
}

.site-footer__identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.site-footer__identity .brand {
  align-self: start;
}

.site-footer__company {
  display: grid;
  gap: 6px;
  padding-left: 24px;
  border-left: 1px solid rgba(163, 177, 226, .16);
}

.site-footer__company > strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: -.01em;
}

.site-footer__company > span {
  color: #aeb8d8;
  font-size: .68rem;
  line-height: 1.5;
}

.site-footer__company > .site-footer__license {
  color: #dce3ff;
  font-weight: 600;
}

.site-footer__legal {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 5px 0 0;
}

.site-footer__link {
  position: relative;
  padding: 7px 0 7px 18px;
  color: #dce3ff;
  background: transparent;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition), transform var(--transition);
}

.site-footer__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), var(--pink-500));
  content: '';
  transform: translateY(-50%);
  transition: width var(--transition);
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.site-footer__link:hover::before,
.site-footer__link:focus-visible::before {
  width: 12px;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(163, 177, 226, .12);
}

.site-footer__bottom p {
  margin: 0;
  color: #8490b5;
  font-size: .66rem;
  line-height: 1.55;
}

.site-footer__bottom p:last-child {
  text-align: right;
}

/* Legal modal */
.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 30px 20px;
}

.legal-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 29, .8);
  backdrop-filter: blur(13px);
}

.legal-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 44px 48px 34px;
  border: 1px solid rgba(109, 91, 181, .2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 0%, rgba(176, 64, 208, .08), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, .995), rgba(247, 248, 255, .99));
  box-shadow: 0 38px 110px rgba(3, 8, 29, .43);
  scrollbar-color: rgba(104, 64, 170, .32) transparent;
  scrollbar-width: thin;
}

.legal-modal__panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: var(--gradient-brand);
  content: '';
}

.legal-modal__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 13px;
  background: rgba(255, 255, 255, .9);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  border-color: rgba(75, 46, 131, .3);
  background: var(--white);
  transform: translateY(-1px);
}

.legal-modal__close span,
.legal-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-800);
  content: '';
}

.legal-modal__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.legal-modal__close span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.legal-modal__heading {
  max-width: 760px;
  padding-right: 54px;
}

.legal-modal__heading .eyebrow {
  margin-bottom: 14px;
}

.legal-modal__heading h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-modal__heading > p:not(.legal-modal__updated) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: .9rem;
  line-height: 1.75;
}

.legal-modal__updated {
  display: inline-flex;
  margin: 15px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(0, 119, 255, .13);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(0, 119, 255, .055);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.legal-modal__body {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.legal-section {
  padding: 22px 24px;
  border: 1px solid rgba(27, 39, 88, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 9px 28px rgba(20, 28, 72, .035);
}

.legal-section--accent {
  border-color: rgba(104, 64, 170, .17);
  background: linear-gradient(125deg, rgba(0, 119, 255, .045), rgba(176, 64, 208, .055), rgba(255, 48, 154, .025));
}

.legal-section h3 {
  margin: 0 0 11px;
  color: var(--ink-900);
  font-size: 1.02rem;
  line-height: 1.35;
}

.legal-section p {
  margin: 0;
  color: var(--ink-600);
  font-size: .78rem;
  line-height: 1.78;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section ul + p,
.legal-section .legal-facts + p,
.legal-section p + .legal-actions {
  margin-top: 11px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 19px;
  color: var(--ink-600);
  font-size: .76rem;
  line-height: 1.68;
}

.legal-section li::before {
  position: absolute;
  top: .69em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-500), var(--pink-500));
  box-shadow: 0 0 0 4px rgba(0, 119, 255, .055);
  content: '';
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.legal-fact {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 13px 15px;
  border: 1px solid rgba(25, 35, 74, .085);
  border-radius: 14px;
  background: rgba(247, 248, 253, .84);
}

.legal-fact span {
  color: var(--ink-500);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.legal-fact strong {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: .77rem;
  line-height: 1.45;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-external-link,
.legal-email-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(104, 64, 170, .18);
  border-radius: 12px;
  color: var(--purple-800);
  background: rgba(255, 255, 255, .84);
  font-family: var(--font-display);
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.legal-external-link:hover,
.legal-email-link:hover,
.legal-external-link:focus-visible,
.legal-email-link:focus-visible {
  border-color: rgba(0, 119, 255, .32);
  color: var(--blue-700);
  background: var(--white);
  transform: translateY(-1px);
}

.legal-external-link::after {
  content: '↗';
  font-size: .9rem;
}

.legal-modal__footer {
  position: sticky;
  bottom: -34px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 24px -10px -20px;
  padding: 20px 10px 16px;
  border-top: 1px solid rgba(25, 35, 74, .08);
  background: linear-gradient(180deg, rgba(248, 249, 255, .12), rgba(248, 249, 255, .98) 26%);
}

.legal-modal__footer .button {
  min-width: 138px;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__legal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
  }

  .site-footer__link {
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid rgba(163, 177, 226, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    text-align: center;
  }

  .site-footer__link::before {
    display: none;
  }

  .site-footer__link:hover,
  .site-footer__link:focus-visible {
    background: rgba(255, 255, 255, .055);
    transform: translateY(-1px);
  }
}

@media (max-width: 680px) {
  .site-footer__inner {
    gap: 24px;
    padding-top: 34px;
  }

  .site-footer__identity {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__company {
    justify-items: center;
    padding: 18px 0 0;
    border-top: 1px solid rgba(163, 177, 226, .14);
    border-left: 0;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .site-footer__bottom p:last-child {
    text-align: center;
  }

  .legal-modal {
    align-items: end;
    padding: 12px;
  }

  .legal-modal__panel {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 34px 18px 24px;
    border-radius: 24px;
  }

  .legal-modal__panel::before {
    border-radius: 24px 24px 0 0;
  }

  .legal-modal__close {
    top: 13px;
    right: 13px;
    width: 40px;
    height: 40px;
  }

  .legal-modal__heading {
    padding-right: 44px;
  }

  .legal-modal__heading h2 {
    font-size: clamp(1.82rem, 9vw, 2.45rem);
  }

  .legal-modal__body {
    gap: 11px;
    margin-top: 22px;
  }

  .legal-section {
    padding: 18px 17px;
    border-radius: 16px;
  }

  .legal-facts {
    grid-template-columns: 1fr;
  }

  .legal-fact {
    min-height: 0;
  }

  .legal-actions,
  .legal-external-link,
  .legal-email-link {
    width: 100%;
  }

  .legal-modal__footer {
    bottom: -24px;
    flex-direction: column-reverse;
    margin: 18px -4px -14px;
    padding: 17px 4px 12px;
  }

  .legal-modal__footer .button {
    width: 100%;
  }
}

.legal-modal__footer .button--outline {
  border-color: rgba(27, 39, 88, .18);
  color: var(--ink-800);
  background: rgba(255, 255, 255, .9);
}

.legal-modal__footer .button--outline:hover,
.legal-modal__footer .button--outline:focus-visible {
  border-color: rgba(0, 119, 255, .32);
  color: var(--blue-700);
  background: var(--white);
}


.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form__consents {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 5px 10px;
  align-items: start;
  padding: 12px 13px;
  border: 1px solid rgba(31, 66, 155, .12);
  border-radius: 14px;
  background: rgba(246, 248, 255, .76);
}

.form-consent:hover {
  border-color: rgba(66, 88, 196, .24);
}

.form-consent > input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #5b53d9;
  cursor: pointer;
}

.form-consent__copy {
  color: #4c5674;
  font-size: .75rem;
  line-height: 1.58;
}

.form-consent__copy label {
  cursor: pointer;
}

.form-consent__copy .inline-legal-link {
  font-size: inherit;
  line-height: inherit;
}

.form-consent__tag {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #4941bc;
  background: rgba(91, 83, 217, .1);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-consent__error {
  grid-column: 2;
}

.form-consent:has(input[aria-invalid="true"]) {
  border-color: rgba(217, 28, 124, .42);
  box-shadow: 0 0 0 4px rgba(217, 28, 124, .07);
}

.form-consent--optional {
  background: rgba(239, 244, 255, .58);
}

.footer-contact-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .9);
  background: none;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(104, 190, 255, .5);
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  color: #ffffff;
  text-decoration-color: #ff4daf;
}

[hidden] {
  display: none !important;
}

@media (max-width: 520px) {
  .form-consent {
    grid-template-columns: 18px minmax(0, 1fr);
    padding: 11px;
  }
  .form-consent__copy {
    font-size: .72rem;
  }
}


.brand img,
.insight-icon--brand img,
.services-visual__center img,
.contact-band__mark img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}



.signal-card__services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.signal-card__service {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(121, 148, 224, .16);
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(0, 119, 255, .09), rgba(138, 66, 209, .07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
.signal-card__service--web {
  background: linear-gradient(115deg, rgba(138, 66, 209, .08), rgba(255, 48, 154, .08));
}
.signal-card__service-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(104, 180, 255, .2);
  border-radius: 10px;
  color: #79bbff;
  background: rgba(0, 119, 255, .13);
  box-shadow: 0 8px 22px rgba(0, 73, 166, .12);
}
.signal-card__service--web .signal-card__service-icon {
  border-color: rgba(255, 112, 190, .2);
  color: #ff82c4;
  background: rgba(255, 48, 154, .1);
}
.signal-card__service-icon svg { width: 18px; height: 18px; }
.signal-card__service > div { display: grid; min-width: 0; gap: 2px; }
.signal-card__service small {
  color: #7f8db7;
  font-size: .49rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.signal-card__service strong {
  overflow: hidden;
  color: #eef2ff;
  font-family: var(--font-display);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.signal-card__service-link {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2795ff, #a348e1 52%, #ff309a);
  box-shadow: 0 0 14px rgba(143, 73, 222, .32);
}
.signal-card__service-link::before,
.signal-card__service-link::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: '';
  transform: translateY(-50%);
}
.signal-card__service-link::before { left: -1px; width: 6px; height: 6px; background: #55aaff; }
.signal-card__service-link::after { right: -1px; width: 7px; height: 7px; background: #ff5cb1; box-shadow: 0 0 12px rgba(255, 48, 154, .7); }

.signal-service-map {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 188px;
  grid-template-columns: minmax(0, 1fr) 34px minmax(102px, .28fr);
  align-items: stretch;
  gap: 10px;
  overflow: hidden;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(121, 148, 224, .16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 119, 255, .13), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(255, 48, 154, .11), transparent 34%),
    linear-gradient(145deg, rgba(6, 17, 58, .68), rgba(18, 22, 72, .78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
.signal-service-map__mesh {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(134, 157, 224, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 157, 224, .055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.76) 72%, transparent);
  pointer-events: none;
}
.signal-service-map__lanes {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 11px;
}
.signal-service-map__lane {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(93, 154, 255, .18);
  border-radius: 14px;
  background: linear-gradient(110deg, rgba(0, 119, 255, .105), rgba(49, 56, 137, .14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
.signal-service-map__lane--web {
  border-color: rgba(228, 83, 190, .18);
  background: linear-gradient(110deg, rgba(104, 64, 202, .11), rgba(255, 48, 154, .09));
}
.signal-service-map__lane::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  content: '';
  transform: skewX(-18deg);
  animation: dms-flow-sheen 7.5s ease-in-out infinite;
  pointer-events: none;
}
.signal-service-map__lane--web::after { animation-delay: -3.1s; }
@keyframes dms-flow-sheen {
  0%, 34% { transform: translateX(0) skewX(-18deg); }
  68%, 100% { transform: translateX(430%) skewX(-18deg); }
}
.signal-service-map__lane header {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.signal-service-map__lane header span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #72b5ff;
  background: rgba(0, 119, 255, .13);
}
.signal-service-map__lane--web header span { color: #ff7fc1; background: rgba(255, 48, 154, .1); }
.signal-service-map__lane header svg { width: 14px; height: 14px; }
.signal-service-map__lane header strong {
  overflow: hidden;
  color: #dfe6ff;
  font-family: var(--font-display);
  font-size: .57rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.signal-service-map__flow {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  align-items: center;
}
.signal-service-map__flow span {
  display: grid;
  min-width: 0;
  min-height: 32px;
  place-items: center;
  padding: 5px 6px;
  border: 1px solid rgba(131, 164, 239, .14);
  border-radius: 9px;
  color: #aebae0;
  background: rgba(5, 13, 45, .48);
  font-size: .49rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}
.signal-service-map__flow span:last-child {
  color: #ecf2ff;
  border-color: rgba(94, 232, 177, .17);
  background: rgba(94, 232, 177, .075);
}
.signal-service-map__flow i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(77, 157, 255, .4), rgba(174, 92, 228, .75));
}
.signal-service-map__lane--web .signal-service-map__flow i {
  background: linear-gradient(90deg, rgba(149, 84, 225, .45), rgba(255, 71, 170, .72));
}
.signal-service-map__flow i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(188, 203, 244, .82);
  border-right: 1px solid rgba(188, 203, 244, .82);
  content: '';
  transform: translateY(-50%) rotate(45deg);
}
.signal-service-map__merge {
  position: relative;
  z-index: 2;
  min-height: 100%;
}
.signal-service-map__merge::before {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2795ff, #a248df 50%, #ff309a);
  box-shadow: 0 0 14px rgba(151, 69, 219, .27);
  content: '';
  transform: translateX(-50%);
}
.signal-service-map__merge::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a248df, #ff4eaa);
  content: '';
  transform: translateY(-50%);
}
.signal-service-map__merge span::before,
.signal-service-map__merge span::after {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #c7d7ff;
  border-radius: 50%;
  background: #13205b;
  box-shadow: 0 0 10px rgba(115, 161, 255, .34);
  content: '';
  transform: translate(-50%, -50%);
}
.signal-service-map__merge span::before { top: 25%; }
.signal-service-map__merge span::after { top: 75%; border-color: #ffb1dc; box-shadow: 0 0 10px rgba(255, 83, 174, .34); }
.signal-service-map__outcome {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 9px;
  border: 1px solid rgba(209, 119, 230, .22);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, .06), transparent 35%),
    linear-gradient(155deg, rgba(0, 119, 255, .14), rgba(138, 66, 209, .2) 54%, rgba(255, 48, 154, .14));
  box-shadow: 0 12px 32px rgba(4, 9, 35, .25), inset 0 1px 0 rgba(255,255,255,.05);
  text-align: center;
}
.signal-service-map__outcome::before {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid #f1d6ff;
  border-radius: 50%;
  background: #8d3bd2;
  box-shadow: 0 0 14px rgba(192, 79, 224, .6);
  content: '';
  transform: translateY(-50%);
}
.signal-service-map__outcome-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, rgba(0,119,255,.32), rgba(138,66,209,.4), rgba(255,48,154,.28));
  box-shadow: 0 9px 22px rgba(83, 43, 178, .26);
}
.signal-service-map__outcome-icon svg { width: 20px; height: 20px; }
.signal-service-map__outcome small {
  color: #9da9cf;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.signal-service-map__outcome strong {
  max-width: 110px;
  color: #f7f8ff;
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}
.signal-card__legend .dot--market { background: linear-gradient(135deg, #2795ff, #7458e8); }
.signal-card__legend .dot--web { background: linear-gradient(135deg, #9c4be0, #ff309a); }
.signal-card__legend .dot--outcome {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(177, 102, 232, .34), 0 0 10px rgba(255, 48, 154, .4);
}

@media (min-width: 901px) and (max-height: 900px) {
  .signal-card__services { margin-top: 8px; }
  .signal-card__service { min-height: 44px; padding: 7px 9px; }
  .signal-card__service-icon { width: 29px; height: 29px; }
  .signal-service-map { min-height: 158px; margin-top: 8px; padding: 9px 10px; }
  .signal-service-map__lanes { gap: 8px; }
  .signal-service-map__lane { padding: 7px 8px; }
  .signal-service-map__lane header { margin-bottom: 5px; }
  .signal-service-map__flow span { min-height: 26px; padding: 3px 4px; }
  .signal-service-map__outcome-icon { width: 33px; height: 33px; }
  .signal-card__legend { padding-top: 8px; }
}
@media (max-width: 680px) {
  .signal-card__services { grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr); gap: 7px; }
  .signal-card__service { padding: 9px; }
  .signal-card__service-icon { width: 30px; height: 30px; }
  .signal-card__service strong { white-space: normal; }
  .signal-service-map { grid-template-columns: minmax(0, 1fr) 27px minmax(84px, .3fr); padding: 10px; }
  .signal-service-map__lane { padding: 8px; }
  .signal-service-map__flow { grid-template-columns: minmax(0,1fr) 12px minmax(0,1fr) 12px minmax(0,1fr); }
  .signal-service-map__flow span { padding-inline: 3px; font-size: .46rem; }
  .signal-service-map__outcome { padding-inline: 6px; }
  .signal-service-map__outcome strong { font-size: .57rem; }
}
@media (max-width: 520px) {
  .signal-card__services { grid-template-columns: 1fr; }
  .signal-card__service-link { width: 2px; height: 15px; justify-self: center; background: linear-gradient(180deg, #2795ff, #ff309a); }
  .signal-card__service-link::before { top: -1px; left: 50%; transform: translate(-50%, 0); }
  .signal-card__service-link::after { top: auto; right: auto; bottom: -1px; left: 50%; transform: translate(-50%, 0); }
  .signal-card__service { min-height: 48px; }
  .signal-service-map { grid-template-columns: 1fr; gap: 8px; }
  .signal-service-map__merge { min-height: 23px; }
  .signal-service-map__merge::before { top: 0; bottom: 0; left: 50%; width: 2px; height: auto; }
  .signal-service-map__merge::after { display: none; }
  .signal-service-map__merge span::before { top: 2px; }
  .signal-service-map__merge span::after { top: auto; bottom: -6px; }
  .signal-service-map__outcome { min-height: 86px; flex-direction: row; justify-content: flex-start; gap: 10px; padding: 10px 14px; text-align: left; }
  .signal-service-map__outcome::before { top: -6px; left: 50%; transform: translateX(-50%); }
  .signal-service-map__outcome small,
  .signal-service-map__outcome strong { display: block; max-width: none; }
  .signal-service-map__outcome small { margin-bottom: 2px; }
  .signal-service-map__outcome strong { font-size: .65rem; }
  .signal-card__legend { display: grid; grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .signal-service-map__lane::after { animation: none; }
}


/* Ecosystem diagram — balanced radial spacing (v1.5.9) */
.services-visual {
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr) auto;
}

.services-visual__canvas {
  height: auto;
  min-height: 260px;
  margin-top: 4px;
}

/* The original decorative line spans remain as a harmless fallback in the HTML,
   while the responsive SVG below keeps all three connections aligned at every width. */
.services-visual__line {
  display: none;
}

.services-visual__connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.services-visual__connections line {
  stroke: rgba(121, 149, 235, .48);
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(75, 115, 224, .16));
}

.services-visual__connections line:last-child {
  stroke: rgba(138, 115, 229, .54);
}

.services-visual__node--market {
  top: 18px;
  left: 8px;
}

.services-visual__node--digital {
  top: 18px;
  right: 8px;
}

.services-visual__node--operations {
  right: auto;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.services-visual__foot {
  align-self: end;
}

@media (max-width: 680px) {
  .services-visual {
    grid-template-rows: auto minmax(245px, 1fr) auto;
  }

  .services-visual__canvas {
    height: auto;
    min-height: 245px;
  }

  .services-visual__node--market {
    top: 16px;
    left: 0;
  }

  .services-visual__node--digital {
    top: 16px;
    right: 0;
  }

  .services-visual__node--operations {
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .services-visual {
    grid-template-rows: auto minmax(235px, 1fr) auto;
  }

  .services-visual__canvas {
    height: auto;
    min-height: 235px;
  }

  .services-visual__node--market,
  .services-visual__node--digital {
    top: 14px;
  }

  .services-visual__node--operations {
    bottom: 14px;
  }
}


/* Available Marketing service and three-service current-offer layout — v1.6.0 */
@media (min-width: 1121px) {
  .service-card--request,
  .service-card--future {
    grid-column: span 4;
  }
  .service-card--request {
    min-height: 470px;
  }
}

.service-card--marketing .service-card__icon {
  color: var(--pink-700);
  background: linear-gradient(135deg, rgba(0,119,255,.08), rgba(138,66,209,.1) 52%, rgba(255,48,154,.1));
}

.service-card__highlight--coop {
  border-color: rgba(255, 48, 154, .13);
  background: linear-gradient(135deg, rgba(0,119,255,.045), rgba(138,66,209,.075) 48%, rgba(255,48,154,.065));
}

.signal-card__services--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.signal-card__service--marketing {
  border-color: rgba(210, 104, 229, .18);
  background: linear-gradient(115deg, rgba(104,64,202,.1), rgba(255,48,154,.1));
}

.signal-card__service--marketing .signal-card__service-icon {
  border-color: rgba(214, 128, 238, .22);
  color: #dca1ff;
  background: rgba(138,66,209,.14);
}

.signal-card__services--three .signal-card__service {
  min-height: 52px;
  padding: 8px 9px;
}

.signal-card__services--three .signal-card__service-icon {
  width: 31px;
  height: 31px;
}

.signal-card__services--three .signal-card__service small {
  font-size: .43rem;
}

.signal-card__services--three .signal-card__service strong {
  overflow: visible;
  font-size: .58rem;
  line-height: 1.2;
  text-overflow: clip;
  white-space: normal;
}

.signal-service-map__lanes {
  gap: 7px;
}

.signal-service-map__lane {
  padding: 7px 9px;
}

.signal-service-map__lane header {
  margin-bottom: 4px;
}

.signal-service-map__lane header span {
  width: 21px;
  height: 21px;
  border-radius: 7px;
}

.signal-service-map__lane header svg {
  width: 12px;
  height: 12px;
}

.signal-service-map__lane header strong {
  font-size: .52rem;
}

.signal-service-map__flow span {
  min-height: 24px;
  padding: 3px 4px;
  font-size: .43rem;
}

.signal-service-map__lane--marketing {
  border-color: rgba(190, 107, 231, .2);
  background: linear-gradient(110deg, rgba(72,83,196,.11), rgba(160,64,209,.1) 52%, rgba(255,48,154,.075));
}

.signal-service-map__lane--marketing::after {
  animation-delay: -5.2s;
}

.signal-service-map__lane--marketing header span {
  color: #dba2ff;
  background: rgba(138,66,209,.13);
}

.signal-service-map__lane--marketing .signal-service-map__flow i {
  background: linear-gradient(90deg, rgba(105,122,232,.48), rgba(205,83,220,.74));
}

.signal-service-map__merge::before {
  top: 16.666%;
  bottom: 16.666%;
}

.signal-service-map__merge > i {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #c7d7ff;
  border-radius: 50%;
  background: #13205b;
  box-shadow: 0 0 10px rgba(115,161,255,.34);
  transform: translate(-50%, -50%);
}

.signal-service-map__merge > i:nth-child(1) { top: 16.666%; }
.signal-service-map__merge > i:nth-child(2) { top: 50%; border-color: #d7b4ff; box-shadow: 0 0 10px rgba(177,102,232,.38); }
.signal-service-map__merge > i:nth-child(3) { top: 83.333%; border-color: #ffb1dc; box-shadow: 0 0 10px rgba(255,83,174,.34); }

.signal-card__legend .dot--marketing {
  background: linear-gradient(135deg, #7358e8, #d34cdb);
}

@media (min-width: 901px) and (max-height: 900px) {
  .signal-card__services--three .signal-card__service {
    min-height: 42px;
    padding: 6px 8px;
  }
  .signal-card__services--three .signal-card__service-icon {
    width: 27px;
    height: 27px;
  }
  .signal-service-map__lane {
    padding: 5px 7px;
  }
  .signal-service-map__lane header {
    margin-bottom: 3px;
  }
  .signal-service-map__flow span {
    min-height: 21px;
  }
}

@media (max-width: 680px) {
  .signal-card__services--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .signal-card__services--three .signal-card__service {
    min-height: 66px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 7px 5px;
    text-align: center;
  }
  .signal-card__services--three .signal-card__service > div {
    justify-items: center;
  }
  .signal-card__services--three .signal-card__service small {
    display: none;
  }
  .signal-card__services--three .signal-card__service strong {
    font-size: .5rem;
  }
  .signal-service-map__lane {
    padding: 7px;
  }
  .signal-service-map__lane header strong {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .signal-card__services--three {
    grid-template-columns: 1fr;
  }
  .signal-card__services--three .signal-card__service {
    min-height: 48px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    padding: 8px 10px;
    text-align: left;
  }
  .signal-card__services--three .signal-card__service > div {
    justify-items: start;
  }
  .signal-card__services--three .signal-card__service small {
    display: block;
  }
  .signal-service-map__merge > i {
    display: none;
  }
}

/* Signal-map connector cleanup — v1.6.1
   Keep connector rails behind their nodes and leave a deliberate gap before
   each circular junction so no line crosses the circles. */
.signal-service-map__merge {
  isolation: isolate;
}

.signal-service-map__merge::before,
.signal-service-map__merge::after {
  z-index: 0;
}

.signal-service-map__merge::after {
  left: calc(50% + 8px);
  right: 5px;
}

.signal-service-map__merge > i {
  z-index: 2;
  background: #13205b;
  box-shadow:
    0 0 0 3px #10194a,
    0 0 10px rgba(115, 161, 255, .34);
}

.signal-service-map__merge > i:nth-child(2) {
  box-shadow:
    0 0 0 3px #16184f,
    0 0 10px rgba(177, 102, 232, .38);
}

.signal-service-map__merge > i:nth-child(3) {
  box-shadow:
    0 0 0 3px #1d174f,
    0 0 10px rgba(255, 83, 174, .34);
}

.signal-service-map__outcome::before {
  z-index: 3;
  box-shadow:
    0 0 0 3px #21175b,
    0 0 14px rgba(192, 79, 224, .6);
}

@media (max-width: 520px) {
  .signal-service-map__merge::after {
    left: 50%;
    right: auto;
  }
}


/* Flag selector refinement — v1.6.2 */
@media (max-width: 740px) {
  .language-switcher__button { min-width: 80px; }
}
@media (max-width: 680px) {
  .language-switcher__button { min-width: 76px; min-height: 41px; gap: 7px; padding-inline: 8px; }
  .language-switcher__flag-frame--current { width: 29px; height: 19px; }
  .language-switcher__menu { position: fixed; top: calc(var(--site-shell-height) - 2px); right: 15px; width: min(270px,calc(100vw - 30px)); }
  .language-switcher__menu::before { display: none; }
}
@media (max-width: 480px) {
  .language-switcher__code { display: none; }
  .language-switcher__button { min-width: 51px; padding-inline: 8px; }
  .language-switcher__flag-frame--current { width: 30px; height: 20px; }
  .language-switcher__menu { width: min(270px,calc(100vw - 24px)); }
}
@media (max-width: 360px) {
  .language-switcher__menu { right: 12px; width: calc(100vw - 24px); }
  .language-switcher__menu button { grid-template-columns: 38px minmax(0,1fr) 31px; gap: 9px; padding-inline: 7px; }
  .language-switcher__flag-frame { width: 34px; height: 23px; }
}
