:root {
  --brand: #17166f;
  --brand-bright: #2428a8;
  --ink: #10122f;
  --ink-soft: #242644;
  --night: #0b0d27;
  --paper: #f6f3ec;
  --paper-deep: #e9e5dc;
  --white: #ffffff;
  --muted: #6f7181;
  --line: rgba(16, 18, 47, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --signal: #ff5a00;
  --signal-deep: #e84600;
  --sky: #9ed4ff;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 28px 80px rgba(5, 8, 35, 0.17);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--night);
  background: var(--signal);
}

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

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

button {
  color: inherit;
}

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

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

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand);
  border-radius: 999px;
  transition: transform .2s ease;
}

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

.shell {
  width: min(calc(100% - 64px), 1360px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(96px, 10vw, 168px);
}

.topline {
  position: relative;
  z-index: 50;
  min-height: 34px;
  color: rgba(255, 255, 255, .78);
  background: var(--night);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.topline__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topline__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(255, 90, 0, .1);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(246, 243, 236, .93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(10, 12, 41, .06);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 210px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .28s ease, color .28s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.contact-link:focus-visible,
.mobile-menu a:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}

.button--ink {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 18, 47, .14);
}

.button--ink:hover,
.button--ink:focus-visible {
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(23, 22, 111, .22);
}

.button--signal {
  color: var(--night);
  background: var(--signal);
  box-shadow: 0 14px 36px rgba(255, 90, 0, .18);
}

.button--signal:hover,
.button--signal:focus-visible {
  background: var(--signal-deep);
  box-shadow: 0 18px 42px rgba(255, 90, 0, .25);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  font-size: 14px;
  font-weight: 750;
  transition: border-color .25s ease, gap .25s var(--ease), color .25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 15px;
  color: var(--white);
  border-color: var(--white);
}

.text-link--dark {
  color: var(--ink);
  border-bottom-color: rgba(16, 18, 47, .35);
}

.text-link--dark:hover,
.text-link--dark:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  justify-self: end;
  padding: 10px 0 10px 12px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu-button__icon {
  width: 28px;
  height: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.menu-button__icon i {
  display: block;
  height: 2px;
  background: currentColor;
}

.menu-button__icon i:last-child {
  width: 18px;
  margin-left: auto;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 24, .65);
  opacity: 0;
  transition: opacity .35s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  padding: 26px 30px 32px;
  color: var(--white);
  background: var(--night);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu__top img {
  width: 190px;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  margin-block: auto;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1;
}

.mobile-menu nav a span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.mobile-menu__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.mobile-menu__footer span {
  grid-column: 1 / -1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 16%, rgba(47, 56, 178, .42), transparent 30%),
    linear-gradient(135deg, #0c0e2c 0%, #11143e 56%, #0a0c24 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.9) 58%, rgba(0,0,0,.4) 100%);
}

.hero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(8, 10, 35, .62));
}

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

.hero__orb--one {
  width: 500px;
  aspect-ratio: 1;
  right: -230px;
  top: 8%;
  border: 1px solid rgba(255, 90, 0, .16);
  box-shadow: inset 0 0 100px rgba(255, 90, 0, .05);
}

.hero__orb--two {
  width: 220px;
  aspect-ratio: 1;
  right: 17%;
  bottom: 11%;
  background: rgba(38, 44, 156, .18);
  border: 1px solid rgba(158, 212, 255, .13);
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 112px);
  padding-block: clamp(72px, 8vh, 112px) clamp(90px, 10vh, 140px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--signal);
}

.eyebrow span {
  color: var(--signal);
}

.eyebrow--dark {
  color: rgba(11, 13, 39, .58);
}

.eyebrow--dark span {
  color: var(--night);
}

.hero h1,
.contact h2 {
  max-width: 920px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.35vw, 108px);
  font-weight: 680;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 em,
.contact h2 em,
.display-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: var(--signal);
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .69);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 44px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .62);
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
}

.hero__visual {
  position: relative;
  perspective: 1400px;
}

.data-stage {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: rgba(250, 250, 250, .97);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24px;
  box-shadow: 0 44px 90px rgba(0, 0, 0, .36);
  transform: rotateY(-4deg) rotateX(1.2deg);
  transform-origin: center center;
}

.data-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.22), transparent 28%);
}

.data-stage__header,
.data-stage__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding-inline: 18px;
  color: #727487;
  background: #ececf1;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7c8d0;
}

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

.window-dots i:nth-child(2) {
  background: #f3c851;
}

.window-dots i:nth-child(3) {
  background: #78cf8a;
}

.secure-pill {
  justify-self: end;
  padding: 4px 7px;
  color: #4b4d5e;
  background: #fff;
  border-radius: 999px;
  font-size: 8px;
}

.data-stage__body {
  min-height: 500px;
  padding: clamp(26px, 3.4vw, 44px);
}

.data-stage__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #77798a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.onboarding-step-head {
  margin-bottom: 22px;
}

.onboarding-step-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 11px;
}

.onboarding-step-head__title {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.015em;
}

.onboarding-step-head__count {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #696b7b;
  background: #ededf2;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
}

.onboarding-step-head__progress {
  height: 4px;
  overflow: hidden;
  background: #e5e5eb;
  border-radius: 999px;
}

.onboarding-step-head__progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--signal);
  border-radius: inherit;
}

.data-stage__label--field {
  margin-bottom: 10px;
  font-size: 9px;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b23e00;
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5a00;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, .12);
}

.search-demo {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 62px 13px 15px;
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: 13px;
  box-shadow: 0 13px 34px rgba(23, 22, 111, .11);
}

.search-demo svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.search-demo__text {
  min-width: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 700;
}

.search-demo__cursor {
  width: 1px;
  height: 23px;
  margin-left: -9px;
  background: var(--brand);
  animation: cursor-blink .9s steps(1) infinite;
}

.search-demo kbd {
  padding: 4px 6px;
  color: #858797;
  background: #f1f1f5;
  border: 1px solid #dedee4;
  border-radius: 5px;
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
}

.result-card {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 13px;
  background: #f7f7fa;
  border: 1px solid #e4e4eb;
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(11, 13, 39, .06);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.result-card.is-highlighted {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(23, 22, 111, .13);
}

.result-card__icon,
.suggestion__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 10px;
  font-weight: 850;
}

.result-card__content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.result-card__content strong {
  font-size: 13px;
}

.result-card__content span {
  overflow: hidden;
  color: #77798a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-card__check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #7a2600;
  background: #ffe1d1;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.data-record {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  gap: 8px;
  margin-top: 15px;
}

.data-record div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #ececf2;
  border-radius: 10px;
}

.data-record span {
  color: #898b9c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.data-record strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-ok {
  color: #9a3200;
}

.data-stage__footer {
  grid-template-columns: 1fr auto;
  min-height: 42px;
  color: #77798a;
  background: #f1f1f4;
}

.data-stage__footer span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.data-stage__footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5a00;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--signal);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.floating-chip span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--night);
  border-radius: 50%;
  font-size: 8px;
}

.floating-chip--top {
  top: -22px;
  right: 32px;
  animation: float 4.8s ease-in-out infinite;
}


.hero-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(5, 7, 27, .48);
}

.hero-ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 18px;
  color: rgba(255, 255, 255, .58);
  animation: ticker 26s linear infinite;
}

.hero-ticker span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero-ticker i {
  color: var(--signal);
  font-style: normal;
}

.section-index {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(44px, 5vw, 78px);
  color: #6d6f7c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--brand);
}

.section-index span:last-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-index span:last-child::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.section-index--light {
  color: rgba(255, 255, 255, .5);
}

.section-index--light span:first-child {
  color: var(--signal);
}

.section-index--light span:last-child::after {
  background: var(--line-light);
}

.display-title {
  margin-bottom: 0;
  font-size: clamp(48px, 5.5vw, 92px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .98;
}

.display-title em {
  color: var(--brand);
}

.display-title--light {
  color: var(--white);
}

.display-title--light em {
  color: var(--signal);
}

.manifesto {
  position: relative;
  background: var(--paper);
}

.manifesto::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20%;
  width: 310px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 22, 111, .08);
  border-radius: 50%;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.manifesto__copy {
  max-width: 490px;
  padding-bottom: 10px;
}

.manifesto__copy p {
  margin-bottom: 20px;
  color: #575968;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.manifesto__copy .text-link {
  margin-top: 12px;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-row article {
  position: relative;
  min-height: 245px;
  padding: 34px clamp(26px, 3vw, 46px) 36px 0;
}

.benefit-row article + article {
  padding-left: clamp(26px, 3vw, 46px);
  border-left: 1px solid var(--line);
}

.benefit-row__number {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.benefit-row h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -.035em;
}

.benefit-row p {
  max-width: 330px;
  color: #676977;
  font-size: 15px;
}

.services {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(31, 35, 118, .24), transparent 42%),
    var(--night);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 600px;
  aspect-ratio: 1;
  left: -300px;
  bottom: -260px;
  border: 1px solid rgba(255, 90, 0, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 160px rgba(255, 90, 0, .03);
}

.services__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(46px, 8vw, 130px);
  margin-bottom: clamp(72px, 8vw, 118px);
}

.services__intro {
  max-width: 470px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, .61);
  font-size: 18px;
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-item {
  border-bottom: 1px solid var(--line-light);
}

.service-item > button {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 80px minmax(220px, 1.15fr) minmax(220px, .7fr) 42px;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  color: var(--white);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.service-item__number {
  color: var(--signal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-item__title {
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 650;
  letter-spacing: -.045em;
}

.service-item__meta {
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-item__toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
}

.service-item__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  padding: 0 0 48px 102px;
  animation: panel-in .45s var(--ease);
}

.service-item__panel[hidden] {
  display: none;
}

.service-item__panel > div:first-child {
  max-width: 610px;
}

.service-item__panel p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

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

.tag-list li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.service-item__visual {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}

.service-item__visual--one > span {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--signal);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.service-item__visual--one i {
  position: absolute;
  width: 140px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 90, 0, .3);
  border-radius: 50%;
}

.service-item__visual--one i:nth-of-type(2) {
  width: 205px;
  opacity: .6;
}

.service-item__visual--one i:nth-of-type(3) {
  width: 270px;
  opacity: .3;
}

.radar {
  position: relative;
  width: 140px;
  aspect-ratio: 1;
  border: 1px solid rgba(158, 212, 255, .5);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(158, 212, 255, .25);
}

.radar::after {
  inset: 0 auto 0 50%;
  width: 1px;
  height: auto;
}

.radar i {
  position: absolute;
  border: 1px solid rgba(158, 212, 255, .28);
  border-radius: 50%;
  inset: 20px;
}

.radar i:nth-child(2) {
  inset: 42px;
}

.radar i:nth-child(3) {
  width: 8px;
  height: 8px;
  inset: 33px auto auto 92px;
  background: var(--sky);
  border: 0;
  box-shadow: 0 0 0 7px rgba(158, 212, 255, .1);
}

.radar b {
  position: absolute;
  inset: 50% 50% auto auto;
  width: 50%;
  height: 1px;
  transform-origin: 100% 50%;
  background: linear-gradient(to left, var(--sky), transparent);
  animation: radar 3.5s linear infinite;
}

.blocks {
  width: 180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transform: rotate(-8deg);
}

.blocks i {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.blocks i:nth-child(2),
.blocks i:nth-child(4) {
  background: var(--brand-bright);
}

.blocks i:nth-child(5) {
  background: var(--signal);
}

.product {
  position: relative;
  overflow: hidden;
  background: #edebe6;
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: radial-gradient(rgba(23, 22, 111, .18) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, transparent 0, transparent 43%, #000 76%, transparent 100%);
}

.product__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(470px, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.product__copy {
  max-width: 650px;
}

.product__copy .section-index {
  margin-bottom: 52px;
}

.product__kicker,
.about__kicker,
.technology__kicker {
  margin-bottom: 17px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product__lead {
  max-width: 590px;
  margin: 34px 0 34px;
  color: #555866;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.product__points {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.product__points > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.product__points span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.product__points p {
  margin: 0;
  color: #3f4151;
  font-size: 14px;
  font-weight: 650;
}

.product__demo {
  position: relative;
}

.browser-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 18, 47, .1);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.browser-card__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding-inline: 18px;
  color: #838594;
  background: #f0f0f4;
  border-bottom: 1px solid #dfdfe6;
  font-size: 9px;
  font-weight: 750;
}

.browser-card__lock {
  justify-self: end;
}

.browser-card__content {
  padding: clamp(25px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(23, 22, 111, .035), transparent 50%),
    #fbfbfc;
}

.form-step {
  max-width: 530px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 42px);
  background: var(--white);
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(10, 12, 41, .08);
}

.form-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
}

.form-step__top span:last-child {
  color: #8a8c9c;
  font-size: 9px;
}

.progress {
  height: 3px;
  margin-bottom: 30px;
  overflow: hidden;
  background: #ebebf0;
  border-radius: 999px;
}

.progress i {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--brand);
}

.form-step label > span {
  display: block;
  margin-bottom: 7px;
  color: #77798a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fake-input {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d8d9e2;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.fake-input.is-focused {
  border: 2px solid var(--brand);
  box-shadow: 0 8px 22px rgba(23, 22, 111, .08);
}

.fake-input b {
  color: var(--brand);
  animation: cursor-blink .9s steps(1) infinite;
}

.fake-input i {
  margin-left: auto;
  color: var(--brand);
  font-style: normal;
}

.suggestion {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  padding: 10px;
  background: #f5f5f8;
  border: 1px solid #e2e2e8;
  border-radius: 9px;
}

.suggestion__logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 12px;
}

.suggestion > div:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.suggestion strong {
  font-size: 10px;
}

.suggestion span {
  overflow: hidden;
  color: #818392;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion em {
  color: var(--brand);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.autofill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 19px;
}

.autofill-grid label div {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px;
  color: #505261;
  background: #f7f7f9;
  border: 1px solid #e3e3e8;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.autofill-grid i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: #9a3200;
  background: #ffe1d1;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.form-step > button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 25px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.product__stamp {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 124px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: var(--night);
  background: var(--signal);
  border: 7px solid var(--paper);
  border-radius: 50%;
  transform: rotate(-9deg);
  box-shadow: 0 16px 34px rgba(10, 12, 41, .14);
}

.product__stamp span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

.product__stamp b {
  font-size: 28px;
}

.process {
  background: var(--paper);
}

.process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .45fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 86px;
}

.process__head > p {
  max-width: 390px;
  margin-bottom: 8px;
  color: #646674;
  font-size: 18px;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps article {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(22px, 2.4vw, 38px) 36px 0;
}

.process-steps article + article {
  padding-left: clamp(22px, 2.4vw, 38px);
  border-left: 1px solid var(--line);
}

.process-steps__num {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.process-steps__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 45px 0 38px;
  color: var(--brand);
  background: rgba(23, 22, 111, .06);
  border: 1px solid rgba(23, 22, 111, .14);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
}

.process-steps article:nth-child(3) .process-steps__icon {
  color: var(--night);
  background: var(--signal);
  border-color: var(--signal);
}

.process-steps h3 {
  margin-bottom: 9px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.process-steps p {
  max-width: 250px;
  color: #6a6c79;
  font-size: 14px;
}

.use-cases {
  color: var(--white);
  background: var(--brand);
}

.use-cases .section-index--light,
.use-cases .section-index {
  color: rgba(255,255,255,.55);
}

.use-cases .section-index span:first-child {
  color: var(--signal);
}

.use-cases .section-index span:last-child::after {
  background: rgba(255,255,255,.18);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(430px, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.use-cases__copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.use-cases__copy .display-title em {
  color: var(--signal);
}

.use-cases__copy > p {
  max-width: 530px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.65;
}

.use-cases__list {
  border-top: 1px solid rgba(255,255,255,.22);
}

.use-cases__list article {
  display: grid;
  grid-template-columns: 54px minmax(170px, .75fr) 1fr;
  gap: 22px;
  align-items: baseline;
  padding-block: 31px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.use-cases__list span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 850;
}

.use-cases__list h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  letter-spacing: -.04em;
}

.use-cases__list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.technology {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.technology__image,
.technology__overlay {
  position: absolute;
  inset: 0;
}

.technology__image {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 90, 0, .18), transparent 24%),
    radial-gradient(circle at 66% 68%, rgba(100, 172, 255, .13), transparent 30%),
    linear-gradient(135deg, #15186d 0%, #0b0d31 48%, #080a26 100%);
  filter: none;
  transform: none;
}

.technology__image::before {
  content: "";
  position: absolute;
  inset: -12%;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 76px 76px;
  transform: perspective(900px) rotateX(58deg) translateY(15%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to right, transparent 3%, #000 44%, #000 100%);
}

.technology__image::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 15%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255,255,255,.025),
    0 0 0 112px rgba(255,255,255,.018);
}

.technology__overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 31, .96) 0%, rgba(7, 9, 31, .82) 43%, rgba(7, 9, 31, .35) 76%, rgba(7, 9, 31, .58) 100%),
    linear-gradient(0deg, rgba(7, 9, 31, .58), transparent 45%);
}

.technology__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .7fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
  padding-block: 120px;
}

.technology__copy {
  max-width: 780px;
}

.technology__copy .section-index {
  margin-bottom: 58px;
}

.technology__kicker {
  color: var(--signal);
}

.technology__copy > p:not(.technology__kicker) {
  max-width: 650px;
  margin: 32px 0 34px;
  color: rgba(255,255,255,.66);
  font-size: 18px;
  line-height: 1.65;
}

.technology__copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  list-style: none;
}

.technology__copy li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding-block: 15px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 650;
}

.technology__copy li span {
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
}

.code-card {
  overflow: hidden;
  background: rgba(8, 10, 32, .9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
}

.code-card__top,
.code-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 18px;
  color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.code-card__top button {
  padding: 7px 10px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.code-card pre {
  min-height: 420px;
  margin: 0;
  padding: 32px;
  overflow: auto;
  color: #e9eaf5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.75;
}

.code-muted {
  color: #9295aa;
}

.code-key {
  color: var(--signal);
}

.code-name {
  color: var(--sky);
}

.code-string {
  color: #f6d58f;
}

.code-card__bottom {
  min-height: 42px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 0;
}

.code-card__bottom span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.code-card__bottom i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
}

.about__image {
  position: relative;
  min-height: 640px;
}

.about__image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px 24px 24px -24px;
  border: 1px solid rgba(23,22,111,.18);
  border-radius: 24px;
}

.about__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(10,12,41,.14);
}

.about__image-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(8,10,34,.72);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__copy .display-title {
  font-size: clamp(44px, 4.4vw, 76px);
}

.about__copy > p:not(.about__kicker) {
  max-width: 610px;
  margin: 34px 0 32px;
  color: #585a69;
  font-size: 18px;
  line-height: 1.7;
}

.about__facts {
  display: grid;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}

.about__facts > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.about__facts span {
  color: #777986;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.about__facts strong {
  font-size: 13px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--night);
  background: var(--signal);
}

.contact__mesh {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(11, 13, 39, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 39, .15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 78% 48%, #000, transparent 63%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, .7fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  padding-block: 105px;
}

.contact h2 {
  margin-bottom: 30px;
  font-size: clamp(68px, 7vw, 118px);
}

.contact h2 em {
  color: var(--brand);
}

.contact__copy > p:last-child {
  max-width: 670px;
  color: rgba(11, 13, 39, .69);
  font-size: 19px;
  line-height: 1.65;
}

.contact__actions {
  border-top: 1px solid rgba(11,13,39,.25);
}

.contact-link,
.contact-address {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr 34px;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding-block: 22px;
  border-bottom: 1px solid rgba(11,13,39,.25);
}

.contact-link span,
.contact-address span {
  color: rgba(11,13,39,.55);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-link strong,
.contact-address strong {
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -.025em;
}

.contact-link i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,13,39,.35);
  border-radius: 50%;
  font-style: normal;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.contact-link:hover i {
  color: var(--white);
  background: var(--night);
  transform: rotate(45deg);
}

.contact-address {
  grid-template-columns: 82px 1fr;
}

.contact-address strong {
  font-size: 17px;
  line-height: 1.45;
}

.site-footer {
  color: rgba(255,255,255,.72);
  background: var(--night);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 60px;
  padding: 84px 0 62px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.site-footer__brand {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer__brand img {
  width: min(100%, 420px);
}

.site-footer__brand span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer__top p {
  max-width: 470px;
  justify-self: end;
  color: rgba(255,255,255,.54);
  font-size: 18px;
  line-height: 1.6;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-block: 58px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.site-footer__nav > div {
  display: grid;
  justify-items: start;
  gap: 11px;
}

.site-footer__nav > div > span:first-child {
  margin-bottom: 11px;
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__nav > div > span:not(:first-child) {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  justify-self: end;
  color: rgba(255,255,255,.65);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal--delay {
  transition-delay: .12s;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@keyframes cursor-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes radar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 48px), 1120px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(56px, 7vw, 84px);
  }

  .data-stage__body {
    min-height: 470px;
    padding: 27px;
  }

  .service-item__panel {
    grid-template-columns: 1fr 270px;
  }

  .product__grid {
    grid-template-columns: minmax(0, .8fr) minmax(440px, 1fr);
    gap: 70px;
  }

  .technology__inner {
    grid-template-columns: minmax(0, .9fr) minmax(390px, .7fr);
    gap: 70px;
  }

  .about__grid {
    grid-template-columns: minmax(390px, .8fr) 1fr;
    gap: 70px;
  }

  .about__image,
  .about__image img {
    min-height: 560px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

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

  .topline__inner {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 78px;
    padding-block: 84px 120px;
  }

  .hero__copy {
    max-width: 790px;
  }

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

  .data-stage {
    transform: rotateY(-2deg) rotateX(1deg);
  }

  .manifesto__grid,
  .services__header,
  .process__head,
  .use-cases__grid,
  .technology__inner,
  .about__grid,
  .contact__inner,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .manifesto__copy,
  .services__intro,
  .process__head > p,
  .use-cases__copy > p,
  .technology__copy,
  .contact__copy > p:last-child {
    max-width: 700px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-row article {
    min-height: 200px;
    padding: 30px 0 32px;
  }

  .benefit-row article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit-row__number {
    margin-bottom: 28px;
  }

  .service-item > button {
    grid-template-columns: 52px 1fr 36px;
  }

  .service-item__meta {
    display: none;
  }

  .service-item__panel {
    grid-template-columns: 1fr 250px;
    padding-left: 74px;
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .product__copy {
    max-width: 760px;
  }

  .product__demo {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-steps article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .use-cases__copy {
    position: static;
  }

  .technology {
    min-height: auto;
  }

  .technology__inner {
    padding-block: 110px;
  }

  .code-card {
    width: min(100%, 680px);
  }

  .about__image {
    width: min(100%, 760px);
  }

  .about__image,
  .about__image img {
    min-height: 520px;
  }

  .contact__inner {
    min-height: auto;
    padding-block: 100px;
  }

  .contact__actions {
    width: min(100%, 720px);
  }

  .site-footer__top p {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), 640px);
  }

  .section-pad {
    padding-block: 92px;
  }

  .topline {
    min-height: 30px;
    font-size: 8px;
  }

  .topline__inner {
    min-height: 30px;
  }

  .site-header {
    height: 70px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    width: 166px;
  }

  .menu-button__label {
    display: none;
  }

  .hero__inner {
    gap: 66px;
    padding-block: 70px 96px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1,
  .contact h2 {
    margin-bottom: 24px;
    font-size: clamp(46px, 13vw, 70px);
    line-height: .96;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .data-stage {
    border-radius: 18px;
    transform: none;
  }

  .data-stage__header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 12px;
    font-size: 8px;
  }

  .data-stage__body {
    min-height: 500px;
    padding: 19px;
  }

  .search-demo {
    min-height: 53px;
  }

  .search-demo kbd {
    display: none;
  }

  .result-card {
    grid-template-columns: 38px 1fr 25px;
  }

  .result-card__icon {
    width: 38px;
    height: 38px;
  }

  .data-record {
    grid-template-columns: 1fr 1fr;
  }

  .data-record div:first-child {
    grid-column: 1 / -1;
  }

  .floating-chip--top {
    right: 14px;
  }

  .hero-ticker__track {
    gap: 18px;
  }

  .display-title {
    font-size: clamp(43px, 12vw, 66px);
  }

  .section-index {
    grid-template-columns: 34px 1fr;
    margin-bottom: 42px;
  }

  .manifesto__grid,
  .services__header {
    gap: 34px;
  }

  .manifesto__copy p,
  .services__intro,
  .product__lead,
  .technology__copy > p:not(.technology__kicker),
  .about__copy > p:not(.about__kicker),
  .use-cases__copy > p {
    font-size: 16px;
  }

  .service-item > button {
    min-height: 92px;
    grid-template-columns: 34px 1fr 34px;
    gap: 12px;
  }

  .service-item__title {
    font-size: 25px;
  }

  .service-item__toggle {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .service-item__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 34px 46px;
  }

  .service-item__visual {
    width: 100%;
    min-height: 170px;
  }

  .browser-card {
    border-radius: 16px;
    transform: none;
  }

  .browser-card__bar {
    grid-template-columns: auto 1fr auto;
    padding-inline: 12px;
  }

  .browser-card__content {
    padding: 14px;
  }

  .form-step {
    padding: 20px;
  }

  .autofill-grid {
    grid-template-columns: 1fr;
  }

  .product__stamp {
    right: -5px;
    bottom: -48px;
    width: 102px;
  }

  .process__head {
    gap: 28px;
    margin-bottom: 58px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article,
  .process-steps article + article,
  .process-steps article:nth-child(3),
  .process-steps article:nth-child(4) {
    min-height: 260px;
    padding: 26px 0 30px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-steps article:first-child {
    border-top: 0;
  }

  .process-steps__icon {
    width: 64px;
    height: 64px;
    margin: 32px 0 26px;
  }

  .use-cases__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .use-cases__list article {
    grid-template-columns: 36px 1fr;
    gap: 10px 14px;
  }

  .use-cases__list p {
    grid-column: 2;
  }

  .technology__inner {
    padding-block: 90px;
  }

  .technology__overlay {
    background: linear-gradient(90deg, rgba(7,9,31,.97), rgba(7,9,31,.82));
  }

  .code-card pre {
    min-height: 360px;
    padding: 22px;
    font-size: 10px;
  }

  .about__image,
  .about__image img {
    min-height: 420px;
  }

  .about__image::before {
    inset: -14px 14px 14px -14px;
  }

  .about__facts > div {
    grid-template-columns: 82px 1fr;
  }

  .contact__inner {
    gap: 58px;
    padding-block: 88px;
  }

  .contact-link,
  .contact-address {
    grid-template-columns: 62px 1fr 28px;
    min-height: 96px;
  }

  .contact-link strong {
    font-size: 18px;
  }

  .contact-address {
    grid-template-columns: 62px 1fr;
  }

  .site-footer__top {
    gap: 36px;
    padding: 70px 0 48px;
  }

  .site-footer__brand img {
    width: min(100%, 330px);
  }

  .site-footer__top p {
    font-size: 16px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .site-footer__nav > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    padding-block: 26px;
  }

  .site-footer__bottom > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 420px) {
  .mobile-menu__panel {
    padding-inline: 22px;
  }

  .mobile-menu__top img {
    width: 160px;
  }

  .hero h1,
  .contact h2 {
    font-size: 45px;
  }

  .display-title {
    font-size: 41px;
  }

  .data-stage__header > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .floating-chip {
    font-size: 9px;
  }

  .service-item__title {
    font-size: 21px;
  }

  .suggestion {
    grid-template-columns: 34px 1fr;
  }

  .suggestion em {
    display: none;
  }

  .contact-link,
  .contact-address {
    grid-template-columns: 1fr 28px;
    gap: 8px;
  }

  .contact-link span,
  .contact-address span {
    grid-column: 1 / -1;
  }

  .contact-address {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__nav > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

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

/* --------------------------------------------------------------------------
   Live Company Suggestor
   -------------------------------------------------------------------------- */

.suggestor-shell {
  position: relative;
}

.search-demo-wrap {
  position: relative;
}

.search-demo__hint {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--signal);
  border: 2px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(255, 90, 0, .26), 0 5px 12px rgba(11, 13, 39, .16);
  cursor: pointer;
  transform: translate(0, -50%);
  transition: opacity .2s ease, background .2s ease, box-shadow .2s ease;
  animation: search-hint-nudge 2.6s cubic-bezier(.22, 1, .36, 1) infinite;
}

.search-demo__hint svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-demo__hint:hover {
  background: #e94f00;
  box-shadow: 0 14px 28px rgba(255, 90, 0, .32), 0 6px 14px rgba(11, 13, 39, .18);
  animation-play-state: paused;
}

.search-demo__hint:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .95);
  outline-offset: 3px;
}

.search-demo.is-loading + .search-demo__hint {
  opacity: 0;
  pointer-events: none;
}

@keyframes search-hint-nudge {
  0%, 42%, 100% { transform: translate(0, -50%); }
  54% { transform: translate(-5px, -50%); }
  66% { transform: translate(-1px, -50%); }
  78% { transform: translate(-4px, -50%); }
  88% { transform: translate(0, -50%); }
}

.search-demo {
  position: relative;
  cursor: text;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.search-demo:focus-within {
  border-color: var(--signal);
  box-shadow: 0 15px 38px rgba(23, 22, 111, .13), 0 0 0 4px rgba(255, 90, 0, .10);
}

.search-demo__input {
  min-width: 0;
  width: 100%;
  flex: 1;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  caret-color: var(--signal);
  font: inherit;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
}

.search-demo__input::placeholder {
  color: #9294a2;
}

.search-demo__input::-webkit-search-cancel-button,
.fake-input input::-webkit-search-cancel-button {
  display: none;
}

.search-demo__loader {
  width: 16px;
  height: 16px;
  display: none;
  flex: 0 0 16px;
  border: 2px solid rgba(23, 22, 111, .18);
  border-top-color: var(--signal);
  border-radius: 50%;
  animation: suggestor-spin .7s linear infinite;
}

.search-demo.is-loading .search-demo__loader {
  display: block;
}

.search-demo.is-loading kbd {
  display: none;
}

.suggestor-results {
  max-height: 300px;
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding-right: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 22, 111, .35) transparent;
}

.suggestor-results[hidden] {
  display: none !important;
}

.suggestor-results::-webkit-scrollbar {
  width: 5px;
}

.suggestor-results::-webkit-scrollbar-thumb {
  background: rgba(23, 22, 111, .28);
  border-radius: 999px;
}

.result-card {
  width: 100%;
  min-height: 54px;
  grid-template-columns: 36px minmax(0, 1fr) 26px;
  gap: 10px;
  margin-top: 0;
  padding: 9px 11px;
  appearance: none;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: translateZ(0);
}



.result-card:hover,
.result-card:focus-visible,
.result-card.is-active {
  background: #fff;
  border-color: rgba(255, 90, 0, .42);
  box-shadow: 0 12px 28px rgba(23, 22, 111, .11);
  outline: none;
  transform: translateY(-1px);
}

.result-card[aria-selected="true"] {
  background: #fff8f4;
  border-color: rgba(255, 90, 0, .55);
}

.result-card[aria-selected="false"] .result-card__check {
  color: #6f7182;
  background: #ececf2;
}

.result-card__icon,
.result-card__check,
.result-card__content {
  pointer-events: none;
}

.suggestor-results .result-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 11px;
}

.result-card__content strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestor-message {
  min-height: 16px;
  margin: 8px 2px 0;
  color: #747686;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .01em;
}

.suggestor-message.is-error {
  color: #a52f19;
}

.suggestor-message.is-empty {
  color: #6b6d7d;
}

.live-label {
  transition: color .2s ease;
}

.live-label.is-loading i {
  animation: live-pulse 1s ease-in-out infinite;
}

.live-label.is-error {
  color: #9e2d18;
}

.live-label.is-error i {
  background: #c33c23;
  box-shadow: 0 0 0 4px rgba(195, 60, 35, .12);
}

.data-stage__footer [data-api-duration] {
  justify-self: end;
  text-align: right;
}

.fake-input input {
  min-width: 0;
  width: 100%;
  flex: 1;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  caret-color: var(--signal);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.fake-input:focus-within {
  border-color: var(--signal);
  box-shadow: 0 8px 22px rgba(23, 22, 111, .08), 0 0 0 3px rgba(255, 90, 0, .08);
}

.suggestion {
  width: 100%;
  appearance: none;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.suggestion:disabled {
  opacity: .68;
  cursor: default;
  transform: none;
}

.suggestion:hover,
.suggestion:focus-visible {
  background: #fff8f4;
  border-color: rgba(255, 90, 0, .42);
  outline: none;
  transform: translateY(-1px);
}

.suggestion .suggestion__logo {
  overflow: visible;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  text-overflow: clip;
  white-space: normal;
}

.suggestion__content {
  min-width: 0;
  display: grid;
  gap: 2px;
  overflow: visible;
  color: inherit;
  font-size: inherit;
  text-overflow: clip;
  white-space: normal;
}

.suggestion__content strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion__content > span {
  overflow: hidden;
  color: #818392;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.autofill-grid label div > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .55; }
}

@media (max-width: 700px) {
  .search-demo__input {
    font-size: 16px;
  }

  .onboarding-step-head {
    margin-bottom: 18px;
  }

  .onboarding-step-head__title {
    font-size: 15px;
  }

  .search-demo {
    padding-right: 53px;
  }

  .search-demo__hint {
    top: 50%;
    right: 8px;
    width: 34px;
    height: 34px;
    border-width: 2px;
  }

  .search-demo__hint svg {
    width: 16px;
    height: 16px;
  }

  .suggestor-results {
    max-height: 250px;
  }

  .result-card {
    padding: 10px;
  }

  .suggestor-message {
    font-size: 8px;
  }
}

@media (max-width: 420px) {
  .result-card {
    grid-template-columns: 34px minmax(0, 1fr) 23px;
    gap: 9px;
  }

  .result-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .result-card__content strong {
    font-size: 11px;
  }

  .result-card__content span {
    font-size: 8px;
  }

  .data-stage__footer {
    gap: 8px;
    padding-inline: 10px;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-demo__loader,
  .live-label.is-loading i {
    animation: none;
  }
}

/* Keep the live suggestion row visually distinct from the form's primary CTA. */
.form-step > .suggestion {
  min-height: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  justify-content: initial;
  gap: 10px;
  margin-top: 7px;
  padding: 10px;
  color: var(--ink);
  background: #f5f5f8;
  border: 1px solid #e2e2e8;
  border-radius: 9px;
  font-size: inherit;
  font-weight: inherit;
}

.form-step > .suggestion:hover,
.form-step > .suggestion:focus-visible {
  color: var(--ink);
  background: #fff8f4;
  border-color: rgba(255, 90, 0, .42);
}

@media (max-width: 420px) {
  .form-step > .suggestion {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}
/* ========================================================================== 
   Homepage 2026 · Version 9
   Splash intro, exchanged first/second section design and dual live suggestor
   ========================================================================== */

body.is-splashing {
  height: 100%;
  overflow: hidden;
}

html.no-js .welcome-splash {
  display: none;
}

html.no-js body.is-splashing {
  height: auto;
  overflow-x: clip;
  overflow-y: auto;
}

.welcome-splash {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  transition:
    opacity .78s cubic-bezier(.65, 0, .35, 1),
    visibility .78s step-end,
    transform .78s cubic-bezier(.65, 0, .35, 1),
    filter .78s ease;
}

.welcome-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  filter: blur(10px);
}

.welcome-splash[hidden] {
  display: none;
}

.welcome-splash__grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(23, 22, 111, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 111, .065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, rgba(0,0,0,.76) 48%, transparent 88%);
}

.welcome-splash__beam {
  position: absolute;
  z-index: 1;
  top: -20%;
  bottom: -20%;
  left: 50%;
  width: 3px;
  background: var(--signal);
  box-shadow: 0 0 54px rgba(255, 90, 0, .38);
  transform: translateX(-50%) scaleY(0);
  transform-origin: center top;
  animation: splash-beam 2.7s cubic-bezier(.7, 0, .2, 1) both;
}

.welcome-splash__beam::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, .42), transparent);
  transform: translate(-50%, -50%);
}

.welcome-splash__frame {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(23, 22, 111, .16);
  border-radius: clamp(18px, 2.2vw, 34px);
  opacity: 0;
  transform: scale(.985);
  animation: splash-frame 1.1s .2s var(--ease) forwards;
}

.welcome-splash__frame::before,
.welcome-splash__frame::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--signal);
}

.welcome-splash__frame::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.welcome-splash__frame::after {
  right: 16px;
  bottom: 16px;
  border-top: 0;
  border-left: 0;
}

.welcome-splash__content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 72px), 780px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.welcome-splash__kicker {
  margin: 0 0 clamp(24px, 4vh, 42px);
  color: rgba(16, 18, 47, .58);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: splash-rise .75s .28s var(--ease) forwards;
}

.welcome-splash__logo-wrap {
  width: min(72vw, 610px);
  overflow: hidden;
  padding-block: 12px;
  clip-path: inset(0 100% 0 0);
  animation: splash-logo-mask 1.12s .72s cubic-bezier(.77, 0, .18, 1) forwards;
}

.welcome-splash__logo-wrap img {
  width: 100%;
  filter: blur(8px);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  animation: splash-logo-image .86s .78s var(--ease) forwards;
}

.welcome-splash__rule {
  width: 0;
  height: 2px;
  margin-top: clamp(22px, 4vh, 38px);
  background: var(--signal);
  box-shadow: 0 0 28px rgba(255, 90, 0, .24);
  animation: splash-rule .8s 1.42s var(--ease) forwards;
}

.welcome-splash__claim {
  margin: 20px 0 0;
  color: rgba(16, 18, 47, .7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(12px);
  animation: splash-rise .72s 1.66s var(--ease) forwards;
}

.welcome-splash__meta {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 52px);
  display: flex;
  gap: 16px;
  color: rgba(16, 18, 47, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  animation: splash-rise .65s 1.82s var(--ease) forwards;
}

.welcome-splash__meta span + span::before {
  content: "·";
  margin-right: 16px;
  color: var(--signal);
}

.welcome-splash__skip {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 4vw, 58px);
  bottom: clamp(24px, 3.7vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(16, 18, 47, .58);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 18, 47, .22);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  opacity: 0;
  animation: splash-rise .65s 1.82s var(--ease) forwards;
}

.welcome-splash__skip:hover,
.welcome-splash__skip:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.welcome-splash__skip:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 5px;
}

@keyframes splash-beam {
  0% { transform: translateX(-50%) scaleY(0); opacity: 0; }
  18% { opacity: 1; }
  62% { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(34vw) scaleY(1); opacity: 0; }
}

@keyframes splash-frame {
  to { opacity: 1; transform: scale(1); }
}

@keyframes splash-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splash-logo-mask {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes splash-logo-image {
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@keyframes splash-rule {
  to { width: min(38vw, 230px); }
}

/* First section receives the editorial, light treatment of the former second section. */
.hero--light {
  color: var(--ink);
  background:
    radial-gradient(circle at 83% 16%, rgba(255, 90, 0, .105), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(36, 40, 168, .07), transparent 25%),
    var(--paper);
  border-bottom: 1px solid rgba(16, 18, 47, .08);
}

.hero--light .hero__grid {
  opacity: .55;
  background-image:
    linear-gradient(rgba(23, 22, 111, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 111, .055) 1px, transparent 1px);
  mask-image: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.22) 55%, transparent 100%);
}

.hero--light .hero__grid::after {
  background: linear-gradient(to bottom, rgba(246, 243, 236, .08), rgba(246, 243, 236, .78));
}

.hero--light .hero__orb--one {
  border-color: rgba(23, 22, 111, .12);
  box-shadow: inset 0 0 100px rgba(23, 22, 111, .035);
}

.hero--light .hero__orb--two {
  background: rgba(255, 90, 0, .05);
  border-color: rgba(255, 90, 0, .12);
}

.hero--light .eyebrow {
  color: rgba(16, 18, 47, .55);
}

.hero--light .eyebrow span {
  color: var(--signal-deep);
}

.hero--light h1 {
  color: var(--ink);
}

.hero--light h1 em {
  color: var(--brand);
}

.hero--light .hero__lead {
  color: #575968;
}

.hero--light .hero__proof {
  color: #656775;
}

.hero--light .data-stage {
  border-color: rgba(23, 22, 111, .12);
  box-shadow: 0 42px 100px rgba(23, 22, 111, .2), 0 9px 28px rgba(16, 18, 47, .08);
}

/* Second section receives the atmospheric dark treatment of the former hero. */
.manifesto--dark {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 17%, rgba(47, 56, 178, .42), transparent 30%),
    linear-gradient(135deg, #0c0e2c 0%, #11143e 56%, #0a0c24 100%);
}

.manifesto--dark::after {
  right: -160px;
  top: 8%;
  width: 460px;
  border-color: rgba(255, 90, 0, .15);
  box-shadow: inset 0 0 120px rgba(255, 90, 0, .045);
}

.manifesto__content {
  position: relative;
  z-index: 2;
}

.manifesto__grid-bg {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to left, rgba(0,0,0,.8), rgba(0,0,0,.2) 72%, transparent);
}

.manifesto__orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.manifesto__orb--one {
  width: 240px;
  aspect-ratio: 1;
  left: 10%;
  bottom: 9%;
  background: rgba(38, 44, 156, .18);
  border: 1px solid rgba(158, 212, 255, .12);
}

.manifesto__orb--two {
  width: 130px;
  aspect-ratio: 1;
  right: 26%;
  top: 18%;
  border: 1px solid rgba(255, 90, 0, .14);
}

.manifesto--dark .section-index span:last-child::after {
  background: rgba(255, 255, 255, .14);
}

.manifesto--dark .manifesto__grid {
  align-items: center;
}

.manifesto--dark .display-title {
  max-width: 880px;
}

.manifesto--dark .display-title em {
  color: var(--signal);
}

.manifesto--dark .manifesto__copy p {
  color: rgba(255, 255, 255, .7);
}

.manifesto--dark .benefit-row {
  border-color: rgba(255, 255, 255, .16);
}

.manifesto--dark .benefit-row article + article {
  border-color: rgba(255, 255, 255, .16);
}

.manifesto--dark .benefit-row__number {
  color: var(--signal);
}

.manifesto--dark .benefit-row h3 {
  color: var(--white);
}

.manifesto--dark .benefit-row p {
  color: rgba(255, 255, 255, .62);
}

.manifesto--dark .hero-ticker {
  margin-top: clamp(82px, 9vw, 140px);
}

/* Dual onboarding tabs and richer live panel. */
.data-stage__body {
  min-height: 570px;
}

.onboarding-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 24px;
  padding: 5px;
  background: #e9e9ef;
  border: 1px solid #dedee7;
  border-radius: 14px;
}

.onboarding-tabs__button {
  min-width: 0;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 10px;
  color: #6d6f7e;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 820;
  line-height: 1.15;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}

.onboarding-tabs__button:hover {
  color: var(--ink);
}

.onboarding-tabs__button:focus-visible {
  outline: 3px solid rgba(158, 212, 255, .95);
  outline-offset: 2px;
}

.onboarding-tabs__button.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(23, 22, 111, .11);
  transform: translateY(-1px);
}

.onboarding-tabs__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  color: var(--white);
  background: #aaaab6;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
  transition: background .22s ease, transform .22s var(--ease);
}

.onboarding-tabs__button.is-active .onboarding-tabs__icon {
  background: var(--signal);
  transform: scale(1.04);
}

.live-label {
  font-size: 8px;
  letter-spacing: .08em;
}

.result-card__icon.is-address {
  color: var(--brand);
  background: #ececff;
  font-size: 16px;
}

.data-record strong.is-address-value {
  color: var(--brand);
}

@media (max-width: 1180px) {
  .hero--light .hero__inner {
    grid-template-columns: minmax(0, .88fr) minmax(430px, 1fr);
    gap: 44px;
  }

  .hero--light h1 {
    font-size: clamp(52px, 6.3vw, 78px);
  }
}

@media (max-width: 960px) {
  .hero--light .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero--light .hero__copy {
    max-width: 850px;
  }

  .manifesto--dark .manifesto__grid {
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .welcome-splash__content {
    width: min(calc(100% - 44px), 620px);
  }

  .welcome-splash__logo-wrap {
    width: min(82vw, 510px);
  }

  .welcome-splash__meta {
    left: 24px;
    right: 24px;
    bottom: 28px;
    justify-content: center;
    font-size: 8px;
  }

  .welcome-splash__skip {
    top: 24px;
    right: 24px;
    bottom: auto;
    left: auto;
  }

  .hero--light .hero__inner {
    padding-top: 64px;
  }

  .data-stage__body {
    min-height: 600px;
    padding: 17px;
  }

  .onboarding-tabs {
    margin-bottom: 20px;
  }

  .onboarding-tabs__button {
    min-height: 46px;
    gap: 6px;
    padding-inline: 6px;
    font-size: 9px;
  }

  .onboarding-tabs__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .onboarding-step-head__title {
    font-size: 15px;
  }

  .manifesto--dark .benefit-row article + article {
    border-top-color: rgba(255, 255, 255, .16);
  }
}

@media (max-width: 390px) {
  .onboarding-tabs__button {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    justify-content: start;
    text-align: left;
  }

  .onboarding-tabs__button:last-child {
    line-height: 1.05;
  }

  .search-demo__hint {
    width: 36px;
    height: 36px;
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-splash__beam,
  .welcome-splash__frame,
  .welcome-splash__kicker,
  .welcome-splash__logo-wrap,
  .welcome-splash__logo-wrap img,
  .welcome-splash__rule,
  .welcome-splash__claim,
  .welcome-splash__meta,
  .welcome-splash__skip {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .welcome-splash__rule {
    width: min(38vw, 230px);
  }
}


/* Exact screen exchange requested for version 9 --------------------------- */
.manifesto--hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(74px, 7.5vw, 116px) clamp(70px, 7.5vw, 108px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 90, 0, .09), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(36, 40, 168, .075), transparent 27%),
    var(--paper);
}

.manifesto--hero::after {
  width: min(36vw, 520px);
  right: -10vw;
  top: 8%;
  border-color: rgba(23, 22, 111, .12);
  box-shadow: inset 0 0 110px rgba(23, 22, 111, .025);
}

.manifesto-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .56;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 22, 111, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 111, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, .2), #000 60%, transparent 100%);
}

.manifesto-hero__inner {
  position: relative;
  z-index: 2;
}

.manifesto__grid--hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .62fr);
  align-items: center;
}

.manifesto-hero__title {
  max-width: 930px;
  font-size: clamp(58px, 6.6vw, 110px);
  line-height: .93;
}

.manifesto-hero__title em {
  color: var(--brand);
}

.manifesto-hero__copy {
  max-width: 520px;
}

.manifesto-hero__copy p {
  color: #555767;
  font-size: clamp(17px, 1.35vw, 20px);
}

.manifesto-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.manifesto--hero .benefit-row {
  margin-top: clamp(62px, 7.2vw, 108px);
}

.manifesto--hero .benefit-row h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -.035em;
}

.manifesto-hero__accent {
  position: absolute;
  right: clamp(24px, 4vw, 70px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(23, 22, 111, .35);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .2em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.manifesto-hero__accent i {
  width: 56px;
  height: 1px;
  background: var(--signal);
}

.manifesto-hero__scroll {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 0 auto;
  color: #6b6d7c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.manifesto-hero__scroll i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-style: normal;
  transition: transform .25s var(--ease), background .25s ease;
}

.manifesto-hero__scroll:hover i,
.manifesto-hero__scroll:focus-visible i {
  background: var(--signal);
  transform: translateY(3px);
}

.hero--second {
  min-height: 100svh;
}

.hero--second .hero__inner {
  padding-block: clamp(84px, 8vw, 120px) clamp(96px, 9vw, 132px);
}

.hero__title {
  max-width: 920px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(58px, 6.15vw, 104px);
  font-weight: 680;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero__title em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero__demo-link {
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.hero--second .data-stage__body {
  min-height: 570px;
}

.hero--second .suggestor-results {
  max-height: 300px;
}

@media (max-width: 1180px) {
  .manifesto__grid--hero {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, .72fr);
    gap: 62px;
  }

  .manifesto-hero__title,
  .hero__title {
    font-size: clamp(56px, 7vw, 86px);
  }
}

@media (max-width: 960px) {
  .manifesto--hero {
    min-height: auto;
  }

  .manifesto__grid--hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-hero__copy {
    max-width: 720px;
  }

  .manifesto-hero__accent {
    display: none;
  }

  .hero--second {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .manifesto--hero {
    padding-block: 74px 78px;
  }

  .manifesto-hero__title {
    font-size: clamp(48px, 13vw, 70px);
    line-height: .96;
  }

  .manifesto-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .manifesto-hero__actions .button {
    width: 100%;
  }

  .manifesto-hero__scroll {
    margin-top: 32px;
  }

  .hero__title {
    margin-bottom: 24px;
    font-size: clamp(46px, 13vw, 70px);
    line-height: .96;
  }
}


/* Version 10 · Live suggestor on the first screen ------------------------- */
.manifesto__grid--live {
  grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
  align-items: start;
  gap: clamp(46px, 5vw, 82px);
}

.manifesto-hero__headline {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.manifesto__grid--live .manifesto-hero__title {
  max-width: 650px;
  font-size: clamp(56px, 5.2vw, 88px);
  line-height: .94;
}

.manifesto-hero__subline {
  max-width: 560px;
  margin-top: 28px;
  color: #5c5e6c;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.58;
}

.manifesto-hero__live {
  min-width: 0;
  perspective: 1600px;
}

.manifesto-hero__live .data-stage {
  border-color: rgba(23, 22, 111, .13);
  box-shadow: 0 38px 88px rgba(23, 22, 111, .18), 0 12px 34px rgba(23, 22, 111, .08);
  transform: rotateY(-1.6deg) rotateX(.5deg);
}

.manifesto-hero__live .data-stage__body {
  min-height: 520px;
  padding: clamp(22px, 2.5vw, 34px);
}

.manifesto-hero__live .suggestor-results {
  max-height: 235px;
}

.manifesto--hero .benefit-row {
  margin-top: clamp(52px, 5.5vw, 82px);
}

/* Second screen: data-quality system visual. */
.hero--second .hero__inner {
  grid-template-columns: minmax(0, .94fr) minmax(430px, .72fr);
  gap: clamp(50px, 7vw, 108px);
}

.hero--second .hero__copy {
  max-width: 820px;
}

.hero--second .hero__title {
  font-size: clamp(54px, 5.5vw, 92px);
}

.systems-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  color: var(--white);
  background: linear-gradient(145deg, rgba(35, 41, 132, .75), rgba(13, 16, 55, .92));
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  box-shadow: 0 38px 86px rgba(0, 0, 0, .34);
  transform: rotateY(-3deg) rotateX(1deg);
}

.systems-stage::before {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -110px;
  top: -110px;
  border: 1px solid rgba(255, 90, 0, .22);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 90, 0, .06);
}

.systems-stage__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.systems-stage__header span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
}

.systems-stage__header i {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 90, 0, .12);
}

.systems-stage__source {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}

.systems-stage__source span,
.systems-stage__targets span {
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.systems-stage__source strong {
  font-size: clamp(22px, 2.1vw, 31px);
  letter-spacing: -.035em;
}

.systems-stage__source small {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.systems-stage__connector {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 6px;
}

.systems-stage__connector i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35));
}

.systems-stage__connector i:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,.35), transparent);
}

.systems-stage__connector span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--signal);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.systems-stage__targets {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
}

.systems-stage__targets article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 14px;
}

.systems-stage__targets strong {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.systems-stage__targets i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--signal);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.systems-stage > p {
  position: relative;
  z-index: 2;
  margin: 22px 2px 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .manifesto__grid--live {
    grid-template-columns: minmax(0, .72fr) minmax(500px, 1.28fr);
    gap: 42px;
  }

  .manifesto__grid--live .manifesto-hero__title {
    font-size: clamp(50px, 5.9vw, 72px);
  }

  .hero--second .hero__inner {
    grid-template-columns: minmax(0, .9fr) minmax(390px, .72fr);
    gap: 46px;
  }
}

@media (max-width: 960px) {
  .manifesto__grid--live,
  .hero--second .hero__inner {
    grid-template-columns: 1fr;
  }

  .manifesto-hero__headline {
    position: static;
  }

  .manifesto-hero__live {
    width: min(100%, 720px);
  }

  .hero__visual--systems {
    width: min(100%, 680px);
  }
}

@media (max-width: 700px) {
  .manifesto__grid--live {
    gap: 34px;
  }

  .manifesto__grid--live .manifesto-hero__title {
    font-size: clamp(44px, 12.5vw, 66px);
  }

  .manifesto-hero__subline {
    margin-top: 20px;
  }

  .manifesto-hero__live .data-stage__body {
    min-height: 585px;
    padding: 17px;
  }

  .manifesto-hero__live .suggestor-results {
    max-height: 270px;
  }

  .systems-stage {
    padding: 22px 18px;
    transform: none;
  }

  .systems-stage__targets article {
    grid-template-columns: 52px minmax(0, 1fr) 26px;
  }
}


.swiss-inline {
  white-space: nowrap;
}

.swiss-inline__flag {
  position: relative;
  width: .88em;
  height: .88em;
  display: inline-block;
  margin-left: .10em;
  vertical-align: .27em;
  background: #da291c;
  border-radius: .11em;
  box-shadow: 0 .08em .2em rgba(16, 18, 47, .12);
}

.swiss-inline__flag::before,
.swiss-inline__flag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: .02em;
  transform: translate(-50%, -50%);
}

.swiss-inline__flag::before {
  width: .20em;
  height: .56em;
}

.swiss-inline__flag::after {
  width: .56em;
  height: .20em;
}

.manifesto-hero__demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 220px;
  padding: 16px 18px;
  color: var(--white);
  background: #11155a;
  border: 2px solid rgba(210, 213, 243, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease, box-shadow .22s ease, gap .22s var(--ease);
}

.manifesto-hero__demo-link:hover,
.manifesto-hero__demo-link:focus-visible {
  gap: 22px;
  background: #171b6f;
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 16px 34px rgba(17, 21, 90, .18);
  outline: none;
  transform: translateY(-1px);
}

.manifesto-hero__demo-link span {
  font-size: 18px;
  line-height: 1;
}


/* --------------------------------------------------------------------------
   Version 17: light use cases, legal footer and integrated privacy notice
   -------------------------------------------------------------------------- */

.use-cases {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 90, 0, .09), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(23, 22, 111, .08), transparent 31%),
    linear-gradient(135deg, #faf8f3 0%, #efedf7 100%);
}

.use-cases::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(23, 22, 111, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 111, .045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.use-cases > .shell {
  position: relative;
  z-index: 1;
}

.use-cases .section-index--light,
.use-cases .section-index {
  color: rgba(16, 18, 47, .5);
}

.use-cases .section-index span:first-child {
  color: var(--signal);
}

.use-cases .section-index span:last-child::after {
  background: rgba(16, 18, 47, .14);
}

.use-cases__copy .display-title em {
  color: var(--brand);
}

.use-cases__copy > p {
  color: #5e6071;
}

.use-cases__list {
  border-top-color: rgba(16, 18, 47, .16);
}

.use-cases__list article {
  border-bottom-color: rgba(16, 18, 47, .16);
  transition: padding-inline .25s var(--ease), background .25s ease;
}

.use-cases__list article:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, .5);
}

.use-cases__list h3 {
  color: var(--ink);
}

.use-cases__list p {
  color: #626475;
}

.site-footer__nav {
  padding-top: 70px;
}

.site-footer__nav button,
.site-footer__nav .footer-legal-link {
  appearance: none;
  padding: 0;
  color: rgba(255,255,255,.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-align: left;
}

.site-footer__nav button:hover,
.site-footer__nav button:focus-visible,
.site-footer__nav .footer-legal-link:hover,
.site-footer__nav .footer-legal-link:focus-visible {
  color: var(--white);
  outline: none;
}

.site-footer__imprint {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr;
  gap: 40px;
  padding: 38px 0 42px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.site-footer__imprint > span {
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer__imprint address {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.site-footer__imprint address strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 16px;
}

body.privacy-open {
  overflow: hidden;
}

.privacy-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: min(92dvh, 980px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(4, 6, 29, .38);
}

.privacy-dialog::backdrop {
  background: rgba(6, 8, 31, .76);
  backdrop-filter: blur(8px);
}

.privacy-dialog__surface {
  max-height: min(92dvh, 980px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 26px;
}

.privacy-dialog__bar,
.privacy-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 22px;
  color: rgba(255,255,255,.72);
  background: var(--night);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-dialog__bar button,
.privacy-dialog__footer button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.privacy-dialog__bar button i {
  font-size: 18px;
  font-style: normal;
  line-height: .7;
}

.privacy-dialog__content {
  padding: clamp(26px, 4vw, 58px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.privacy-dialog__footer {
  text-transform: none;
  letter-spacing: 0;
}

.privacy-dialog__footer a {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.privacy-intro {
  max-width: 820px;
  margin-bottom: 36px;
}

.privacy-eyebrow,
.privacy-version {
  color: var(--signal-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.privacy-intro h1,
.privacy-intro h2 {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

.privacy-lead {
  max-width: 760px;
  color: #555767;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 44px;
}

.privacy-summary article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,18,47,.12);
  border-radius: 18px;
}

.privacy-summary article > span {
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
}

.privacy-summary strong {
  color: var(--brand);
  font-size: 17px;
}

.privacy-summary p {
  margin: 0;
  color: #666878;
  font-size: 13px;
  line-height: 1.55;
}

.legal-copy {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16,18,47,.16);
}

.legal-copy section {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) 1fr;
  gap: clamp(28px, 5vw, 76px);
  padding: 30px 0;
  border-bottom: 1px solid rgba(16,18,47,.14);
}

.legal-copy h3 {
  margin: 0;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.legal-copy section > :not(h3) {
  grid-column: 2;
}

.legal-copy p,
.legal-copy li {
  color: #555767;
  font-size: 14px;
  line-height: 1.75;
}

.legal-copy a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(23,22,111,.25);
  text-underline-offset: 3px;
}

.legal-copy code {
  padding: 2px 5px;
  color: var(--brand);
  background: rgba(23,22,111,.07);
  border-radius: 5px;
  font-size: .92em;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-page__header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,243,236,.9);
  border-bottom: 1px solid rgba(16,18,47,.12);
  backdrop-filter: blur(16px);
}

.legal-page__header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-page__brand img {
  width: 190px;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.legal-page__main {
  padding-top: clamp(64px, 9vw, 130px);
  padding-bottom: clamp(70px, 10vw, 140px);
}

.legal-page__footer {
  color: rgba(255,255,255,.65);
  background: var(--night);
}

.legal-page__footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .privacy-summary article {
    min-height: 0;
  }

  .legal-copy section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-copy section > :not(h3) {
    grid-column: 1;
  }

  .site-footer__imprint {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-dialog__footer a {
    display: none;
  }

  .privacy-dialog__footer {
    justify-content: flex-end;
  }

  .legal-page__brand img {
    width: 145px;
  }
}


.suggestor-privacy-note {
  margin: 2px 2px 0;
  color: #858797;
  font-size: 8.5px;
  line-height: 1.45;
}

.suggestor-privacy-note a {
  color: var(--brand);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(23,22,111,.25);
  text-underline-offset: 2px;
}


/* Version 18: innovation page and integrated footer imprint */
.process--innovation .process-steps__icon {
  font-size: 18px;
  letter-spacing: -.03em;
}

.process--innovation .process-steps article:first-child .process-steps__icon {
  color: var(--night);
  background: var(--signal);
  border-color: var(--signal);
}

.process--innovation .process-steps article:nth-child(3) .process-steps__icon {
  color: var(--brand);
  background: rgba(23, 22, 111, .06);
  border-color: rgba(23, 22, 111, .14);
}

.site-footer__legal address {
  display: grid;
  justify-items: start;
  gap: 5px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer__legal address strong {
  color: var(--white);
  font-weight: 800;
}

.site-footer__legal .footer-legal-link {
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.14);
}


/* --------------------------------------------------------------------------
   Version 20: official brand assets, marketplace CTA, innovation loop,
   updated contact section
   -------------------------------------------------------------------------- */
.brand img,
.welcome-splash__logo-wrap img,
.mobile-menu__top img {
  max-width: 100%;
  height: auto;
}

.mobile-menu__top img {
  padding: 7px 10px;
  background: #fff;
  border-radius: 12px;
}

.manifesto-hero__buy-link {
  min-width: 190px;
}

.innovation-loop {
  margin-top: 16px;
}

.innovation-loop__orbit {
  position: relative;
  min-height: 500px;
  margin-bottom: 34px;
}

.innovation-loop__ring {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  border: 1px dashed rgba(23, 22, 111, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.innovation-loop__ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 90, 0, .14);
  border-radius: 50%;
}

.innovation-loop__flow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 90, 0, .16);
  animation: innovationOrbit 5.4s linear infinite;
}

.innovation-loop__flow--2 { animation-delay: -1.8s; }
.innovation-loop__flow--3 { animation-delay: -3.6s; }

.innovation-node {
  position: absolute;
  width: min(29vw, 290px);
  min-height: 230px;
  padding: 24px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(15, 20, 52, .07);
}

.innovation-node--ai {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.innovation-node--services {
  left: 6%;
  bottom: 12px;
}

.innovation-node--data {
  right: 6%;
  bottom: 12px;
}

.innovation-node__num,
.innovation-result__kicker {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.innovation-node__icon,
.innovation-result__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 22px 0 20px;
  color: var(--brand);
  background: rgba(23, 22, 111, .06);
  border: 1px solid rgba(23, 22, 111, .14);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.innovation-node--ai .innovation-node__icon { animation: innovationNodePulse 5.4s ease-in-out infinite; }
.innovation-node--services .innovation-node__icon { animation: innovationNodePulse 5.4s ease-in-out -1.8s infinite; }
.innovation-node--data .innovation-node__icon { animation: innovationNodePulse 5.4s ease-in-out -3.6s infinite; }

.innovation-node h3,
.innovation-result h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 1.8vw, 30px);
  letter-spacing: -.035em;
}

.innovation-node p,
.innovation-result p {
  color: #666977;
  font-size: 14px;
  line-height: 1.65;
}

.innovation-result {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 90, 0, .08), rgba(255,255,255,1));
  border: 1px solid rgba(255, 90, 0, .24);
  border-radius: 30px;
  box-shadow: 0 26px 54px rgba(255, 90, 0, .08);
}

.innovation-result::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -38px;
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, rgba(23,22,111,.18), rgba(255,90,0,.48));
  transform: translateX(-50%);
}

.innovation-result__icon {
  margin-inline: auto;
  animation: innovationResultPulse 5.4s ease-in-out infinite;
}

@keyframes innovationOrbit {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(min(24vw, 210px)) rotate(0deg); opacity: .9; }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(min(24vw, 210px)) rotate(-360deg); opacity: .9; }
}

@keyframes innovationNodePulse {
  0%, 22%, 100% {
    color: var(--brand);
    background: rgba(23, 22, 111, .06);
    border-color: rgba(23, 22, 111, .14);
    box-shadow: none;
  }
  6%, 16% {
    color: var(--night);
    background: var(--signal);
    border-color: var(--signal);
    box-shadow: 0 0 0 10px rgba(255, 90, 0, .16);
  }
}

@keyframes innovationResultPulse {
  0%, 56%, 100% {
    color: var(--brand);
    background: rgba(23, 22, 111, .06);
    border-color: rgba(23, 22, 111, .14);
    box-shadow: none;
  }
  68%, 82% {
    color: var(--night);
    background: var(--signal);
    border-color: var(--signal);
    box-shadow: 0 0 0 10px rgba(255, 90, 0, .16);
  }
}

.contact {
  color: var(--night);
  background: #f4f1ea;
}

.contact__mesh {
  opacity: .22;
  background-image:
    linear-gradient(rgba(23, 22, 111, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 111, .10) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 78% 48%, #000, transparent 63%);
}

@media (max-width: 1100px) {
  .innovation-loop__orbit {
    min-height: 430px;
  }

  .innovation-node {
    width: min(30vw, 250px);
  }
}

@media (max-width: 900px) {
  .innovation-loop__orbit {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .innovation-loop__ring,
  .innovation-loop__flow,
  .innovation-result::before {
    display: none;
  }

  .innovation-node,
  .innovation-result {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .innovation-result {
    margin-top: 18px;
  }
}


/* --------------------------------------------------------------------------
   Version 21: matching hero CTAs, smaller Swiss flag, centred innovation
   cards and a visible mobile innovation loop
   -------------------------------------------------------------------------- */

/* Both first-page CTAs now share the same orange pill treatment. */
.manifesto-hero__actions .manifesto-hero__demo-button,
.manifesto-hero__actions .manifesto-hero__buy-link {
  min-width: 190px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

/* Slightly smaller, raised Swiss flag directly after “Schweiz”. */
.swiss-inline__flag {
  width: .66em;
  height: .66em;
  margin-left: .07em;
  vertical-align: .30em;
  border-radius: .08em;
}

.swiss-inline__flag::before {
  width: .14em;
  height: .42em;
}

.swiss-inline__flag::after {
  width: .42em;
  height: .14em;
}

/* Centre all three loop cards and their iconography. */
.innovation-node {
  text-align: center;
}

.innovation-node__num {
  display: block;
  text-align: center;
}

.innovation-node__icon {
  margin-inline: auto;
}

/* Make the loop direction more explicit on desktop as well. */
.innovation-loop__ring {
  border-width: 2px;
  border-style: solid;
  border-color: rgba(23, 22, 111, .13);
  border-right-color: rgba(255, 90, 0, .52);
  border-bottom-color: rgba(255, 90, 0, .28);
}

@media (max-width: 900px) {
  /* Preserve an actual circular composition instead of collapsing to a list. */
  .innovation-loop__orbit {
    position: relative;
    min-height: clamp(560px, 154vw, 650px);
    display: block;
    margin: 26px 0 40px;
  }

  .innovation-loop__ring {
    left: 50%;
    top: 48%;
    width: clamp(248px, 78vw, 330px);
    height: clamp(248px, 78vw, 330px);
    display: block;
    z-index: 0;
  }

  .innovation-loop__flow {
    left: 50%;
    top: 48%;
    width: 12px;
    height: 12px;
    display: block;
    z-index: 1;
    margin: -6px 0 0 -6px;
    box-shadow: 0 0 0 7px rgba(255, 90, 0, .15);
    animation-name: innovationOrbitMobile;
  }

  .innovation-loop__orbit::after {
    content: '↻';
    position: absolute;
    left: 50%;
    top: 48%;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--signal);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 90, 0, .24);
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(23, 22, 111, .08);
    font-size: 28px;
    line-height: 1;
    transform: translate(-50%, -50%);
    animation: innovationCentreSpin 5.4s linear infinite;
  }

  .innovation-node {
    position: absolute;
    z-index: 2;
    min-height: 0;
    padding: 18px 14px 20px;
    border-radius: 22px;
    transform: none;
  }

  .innovation-node--ai {
    left: 50%;
    top: 0;
    width: min(72%, 270px);
    transform: translateX(-50%);
  }

  .innovation-node--services {
    left: 0;
    right: auto;
    bottom: 0;
    width: calc(50% - 8px);
  }

  .innovation-node--data {
    left: auto;
    right: 0;
    bottom: 0;
    width: calc(50% - 8px);
  }

  .innovation-node__icon {
    width: 58px;
    height: 58px;
    margin: 14px auto 13px;
    font-size: 16px;
  }

  .innovation-node h3 {
    margin-bottom: 7px;
    font-size: clamp(19px, 5.3vw, 23px);
    line-height: 1.05;
  }

  .innovation-node p {
    font-size: clamp(11px, 3.3vw, 13px);
    line-height: 1.48;
  }

  .innovation-result {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .innovation-result::before {
    display: block;
  }
}

@media (max-width: 380px) {
  .innovation-loop__orbit {
    min-height: 600px;
  }

  .innovation-node {
    padding-inline: 11px;
  }

  .innovation-node--services,
  .innovation-node--data {
    width: calc(50% - 6px);
  }

  .innovation-node p {
    font-size: 11px;
  }
}

@keyframes innovationOrbitMobile {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(clamp(108px, 34vw, 145px)) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(clamp(108px, 34vw, 145px)) rotate(-360deg);
  }
}

@keyframes innovationCentreSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Version 22: transparent official logo and cleaner footer */
.mobile-menu__top img {
  width: 230px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}


/* --------------------------------------------------------------------------
   Version 23: innovation cleanup, top-aligned contact, about image update
   -------------------------------------------------------------------------- */
.swiss-inline__flag {
  transform: translateY(-.16em) scale(.88);
}

.manifesto-hero__demo-link {
  color: var(--night);
  background: var(--signal);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(255, 90, 0, .18);
}

.manifesto-hero__demo-link:hover,
.manifesto-hero__demo-link:focus-visible {
  color: var(--night);
  background: var(--signal-deep);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 90, 0, .25);
}

.innovation-loop__orbit {
  min-height: 520px;
  padding-bottom: 12px;
}

.innovation-node {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-node h3,
.innovation-node p,
.innovation-node__num {
  text-align: center;
}

.innovation-node p {
  max-width: 240px;
}

.innovation-node__icon {
  margin-inline: auto;
}

.contact-link,
.contact-address {
  align-items: start;
  padding-top: 26px;
  padding-bottom: 20px;
}

.contact-link i {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .innovation-loop {
    margin-top: 12px;
  }

  .innovation-loop__orbit {
    min-height: 390px;
    margin-bottom: 0;
    display: block;
  }

  .innovation-loop__ring,
  .innovation-loop__flow {
    display: block;
  }

  .innovation-loop__ring {
    top: 48%;
    width: min(82vw, 330px);
    height: min(82vw, 330px);
  }

  .innovation-node {
    position: absolute;
    width: min(44vw, 180px);
    min-height: 150px;
    padding: 16px 14px 14px;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(15, 20, 52, .08);
  }

  .innovation-node__num {
    font-size: 9px;
  }

  .innovation-node__icon {
    width: 56px;
    height: 56px;
    margin: 12px auto 12px;
    font-size: 15px;
  }

  .innovation-node h3 {
    font-size: 17px;
    line-height: 1.12;
  }

  .innovation-node p {
    max-width: none;
    font-size: 12px;
    line-height: 1.45;
  }

  .innovation-node--ai {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .innovation-node--services {
    left: 2%;
    bottom: 0;
  }

  .innovation-node--data {
    right: 2%;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .innovation-loop__orbit {
    min-height: 360px;
  }

  .innovation-loop__ring {
    top: 47%;
    width: min(84vw, 300px);
    height: min(84vw, 300px);
  }

  .innovation-node {
    width: min(44vw, 164px);
    min-height: 138px;
    padding: 14px 12px 12px;
  }

  .innovation-node h3 {
    font-size: 15px;
  }

  .innovation-node p {
    font-size: 11px;
  }
}


/* Version 24: web-optimised 4:3 image for Über CYBWELL */
.about__image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.about__image picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.about__image img,
.about__image picture img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1180px), (max-width: 960px), (max-width: 640px) {
  .about__image,
  .about__image img,
  .about__image picture img {
    min-height: 0;
  }
}


.manifesto-hero__subline-detail {
  display: inline-block;
  margin-top: .28em;
  color: #3f4255;
  font-weight: 650;
}


/* Version 26: mobile jump from “Selber testen” to the live input */
.search-demo-wrap {
  scroll-margin-top: 110px;
  scroll-margin-bottom: 32px;
}


/* --------------------------------------------------------------------------
   Version 27: people-free engineering background and ASP.NET deployment
   -------------------------------------------------------------------------- */
.technology__image {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 90, 0, .14), transparent 25%),
    linear-gradient(90deg, rgba(7, 9, 31, .30), rgba(7, 9, 31, .05)),
    url("../img/engineering.jpg") center center / cover no-repeat;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.015);
}

.technology__image::before {
  opacity: .13;
}

.technology__image::after {
  opacity: .56;
}

.about__image-label {
  grid-template-columns: 1fr;
}
