:root {
  --ink: #102c5b;
  --ink-soft: #31527f;
  --paper: #f8fbff;
  --white: #ffffff;
  --line: #dbe8f5;
  --blue: #075bdd;
  --blue-dark: #0647ae;
  --mint: #00aab8;
  --gold: #6fd2ee;
  --muted: #587092;
  --display: "Sora", "Aptos Display", Arial, sans-serif;
  --body:
    "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-label: 0.75rem;
  --type-small: 0.875rem;
  --type-body: 1rem;
  --type-lead: 1.125rem;
  --type-card-title: 1.5rem;
  --type-subheading: clamp(1.75rem, 2.4vw, 2.5rem);
  --type-section-heading: clamp(2.25rem, 3.6vw, 3.5rem);
  --type-hero-heading: clamp(2.85rem, 5vw, 5rem);
  --shadow: 0 20px 60px rgba(21, 35, 55, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
#intro-band,
#faq,
#privacy-data {
  scroll-margin-top: 86px;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font: 400 var(--type-body)/1.6 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  width: min(650px, calc(100% - 40px));
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent__eyebrow {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cookie-consent h2 {
  margin-bottom: 8px;
  font-size: 24px;
}
.cookie-consent p {
  max-width: 440px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-consent p:last-child {
  margin-bottom: 0;
}
.cookie-consent p a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  min-width: 164px;
}
.cookie-consent__actions .button {
  min-height: 46px;
  padding: 10px 14px;
}
.cookie-consent__reject {
  min-height: 46px;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.cookie-consent__reject:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.cookie-settings-link {
  margin-left: 14px;
  padding: 8px;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-settings-link:hover {
  color: var(--blue);
}
.button.mobile-contact-cta {
  display: none;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--blue);
  border: 1px solid rgba(7, 91, 221, 0.28);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 25, 54, 0.16);
  cursor: pointer;
  font: 800 11px/1 var(--body);
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s, transform 0.2s, color 0.2s, background 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  color: var(--white);
  background: var(--blue);
}
.back-to-top__icon {
  font-size: 16px;
}

.container {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}
.section {
  padding: 120px 0;
}
.section-dark {
  color: var(--white);
  background: var(--ink);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(16, 44, 91, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}
.brand {
  position: relative;
  display: block;
  width: 220px;
  height: 52px;
  overflow: hidden;
}
.brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 440px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--type-small);
}
.site-nav > a:not(.nav-contact) {
  opacity: 0.78;
  transition: opacity 0.2s;
}
.site-nav > a:not(.nav-contact):hover {
  opacity: 1;
}
.site-nav > a:not(.nav-contact).is-active,
.site-nav > a:not(.nav-contact)[aria-current] {
  color: var(--blue);
  font-weight: 800;
  opacity: 1;
}
.nav-contact {
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  border-radius: 3px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin-left: auto;
  background: var(--ink);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.splash {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #071936;
  isolation: isolate;
}
.splash::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(140, 218, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 218, 255, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 22%,
    #000 78%,
    transparent
  );
}
.splash::after {
  position: absolute;
  right: -15%;
  bottom: -55%;
  z-index: -1;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(116, 227, 244, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 86px rgba(18, 99, 200, 0.035),
    0 0 0 172px rgba(18, 99, 200, 0.025);
  content: "";
}
.splash__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.splash__glow--one {
  top: 12%;
  left: 23%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(12, 116, 255, 0.26),
    transparent 68%
  );
}
.splash__glow--two {
  right: 14%;
  bottom: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(23, 207, 225, 0.15),
    transparent 70%
  );
}
.splash__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(550px, 1.22fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  min-height: calc(100svh - 86px);
  padding: clamp(68px, 7.5vh, 84px) 0 104px;
}
.splash__copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
}
.splash__eyebrow {
  margin: 0 0 18px;
  color: #8beff1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hero-eyebrow-enter 0.65s 3.4s both cubic-bezier(0.16, 1, 0.3, 1);
}
.splash__eyebrow--primary {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}
.splash__eyebrow > span:first-child {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin: 0 9px 1px 0;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(139, 239, 241, 0.12);
}
.splash__eyebrow--primary > span:first-child {
  margin: 8px 0 0;
}
.splash h1 {
  max-width: 680px;
  margin: 0 0 23px;
  color: #f6fbff;
  font-size: clamp(2.7rem, 3.4vw, 3.9rem);
  line-height: 0.98;
  animation: hero-title-enter 0.9s 3.55s both cubic-bezier(0.16, 1, 0.3, 1);
}
.splash h1 em {
  color: #6fe3ed;
  font-style: normal;
}
.splash__lead {
  max-width: 555px;
  margin: 0;
  color: #c1d1e8;
  font-size: var(--type-lead);
  line-height: 1.65;
  animation: hero-lead-enter 0.8s 3.9s both cubic-bezier(0.16, 1, 0.3, 1);
}
.splash__support {
  max-width: 555px;
  margin: 15px 0 0;
  color: #a9bfd9;
  font-size: var(--type-body);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-lead-enter 0.8s 4.08s both cubic-bezier(0.16, 1, 0.3, 1);
}
.splash__actions {
  display: flex;
  align-items: center;
  gap: 14px 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-actions-enter 0.7s 4.38s both cubic-bezier(0.16, 1, 0.3, 1);
}
.splash__cta {
  color: var(--white);
  background: #0d7bff;
  box-shadow: 0 14px 36px rgba(13, 123, 255, 0.24);
}
.splash__cta:hover {
  color: var(--white);
  background: var(--blue-dark);
}
.splash__link {
  display: inline-flex;
  gap: 9px;
  width: fit-content;
  color: #b9d7ff;
  border-bottom: 1px solid rgba(185, 215, 255, 0.43);
  font-size: 14px;
  font-weight: 800;
}
.splash__note {
  margin: 14px 0 0;
  color: #9eb4cf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-actions-enter 0.6s 4.58s both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-network {
  --hero-network-stage-x: -20vw;
  --hero-network-stage-y: 10vh;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1.48 / 1;
  justify-self: end;
  overflow: hidden;
  margin: 0;
  color: #d8e8ff;
  background: radial-gradient(
    circle at 50% 51%,
    rgba(31, 140, 237, 0.24),
    transparent 32%
  );
  transform-origin: center;
  animation: hero-network-stage 3.15s 0.15s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-network__paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-path {
  fill: none;
  stroke: #42bfff;
  stroke-width: 2;
  stroke-linecap: square;
  filter: drop-shadow(0 0 5px rgba(65, 190, 255, 0.7));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: hero-path-draw 1.35s both cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-path--existing {
  animation-delay: 0.25s;
}
.hero-path--new {
  animation-delay: 0.5s;
}
.hero-path--web {
  animation-delay: 0.9s;
}
.hero-path--automation {
  animation-delay: 1.15s;
}
.hero-path--vertical {
  stroke: rgba(94, 189, 247, 0.5);
  stroke-dasharray: 4 8;
  animation-delay: 0.65s;
}
.hero-pulse {
  fill: #7ceff3;
  filter: drop-shadow(0 0 7px rgba(124, 239, 243, 1));
}
.hero-network__node {
  --enter-x: 0px;
  --enter-y: 0px;
  --drift-x: 0px;
  --drift-y: 0px;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 27%;
  min-height: 15%;
  padding: 14px 16px;
  color: #edf7ff;
  border: 1px dashed rgba(116, 204, 255, 0.35);
  background: rgba(7, 26, 58, 0.64);
  box-shadow: inset 0 0 24px rgba(28, 111, 206, 0.08);
  font: 600 clamp(0.72rem, 1.35vw, 1.2rem)/1.15 var(--display);
  letter-spacing: -0.03em;
  opacity: 0;
  animation:
    hero-node-enter 1.05s both cubic-bezier(0.16, 1, 0.3, 1),
    hero-node-drift 7.8s infinite ease-in-out;
}
.hero-network__node::before,
.hero-network__node::after {
  position: absolute;
  width: 16px;
  height: 16px;
  content: "";
}
.hero-network__node::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(113, 203, 255, 0.75);
  border-left: 2px solid rgba(113, 203, 255, 0.75);
}
.hero-network__node::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid rgba(113, 203, 255, 0.75);
  border-bottom: 2px solid rgba(113, 203, 255, 0.75);
}
.hero-network__node i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #6feef0;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(111, 238, 240, 0.08),
    0 0 15px rgba(111, 238, 240, 0.8);
}
.hero-network__node--existing {
  --enter-x: -48px;
  --enter-y: -18px;
  --drift-x: 9px;
  --drift-y: 3px;
  top: 19%;
  left: 1%;
  animation-delay: 0.15s, 3.4s;
}
.hero-network__node--idea {
  --enter-x: -48px;
  --enter-y: 18px;
  --drift-x: 9px;
  --drift-y: -3px;
  bottom: 19%;
  left: 1%;
  animation-delay: 0.4s, 3.7s;
}
.hero-network__node--web {
  --enter-x: 48px;
  --enter-y: -18px;
  --drift-x: -9px;
  --drift-y: 3px;
  top: 19%;
  right: 1%;
  animation-delay: 0.95s, 4s;
}
.hero-network__node--automation {
  --enter-x: 48px;
  --enter-y: 18px;
  --drift-x: -9px;
  --drift-y: -3px;
  right: 1%;
  bottom: 19%;
  animation-delay: 1.2s, 4.3s;
}
.hero-network__core {
  position: absolute;
  top: 29%;
  left: 34%;
  display: grid;
  place-content: center;
  width: 32%;
  min-height: 42%;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(#69d9ff, #69d9ff) left top/24px 2px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) left top/2px 24px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) right top/24px 2px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) right top/2px 24px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) left bottom/24px 2px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) left bottom/2px 24px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) right bottom/24px 2px no-repeat,
    linear-gradient(#69d9ff, #69d9ff) right bottom/2px 24px no-repeat;
  text-align: center;
  opacity: 0;
  transform: scale(0.86);
  animation:
    hero-core-enter 0.9s 0.65s both cubic-bezier(0.16, 1, 0.3, 1),
    hero-core-breathe 6.6s 2.8s infinite ease-in-out;
}
.hero-network__core > span {
  margin-bottom: 10px;
  color: #92eff1;
  font-size: clamp(0.5rem, 0.88vw, 0.7rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 0 14px rgba(105, 217, 255, 0.55);
  text-transform: uppercase;
}
.hero-network__core strong {
  font: 600 clamp(1rem, 1.85vw, 1.55rem)/1.03 var(--display);
  letter-spacing: -0.06em;
  text-shadow: 0 0 20px rgba(15, 101, 233, 0.38);
}
.splash__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 8px 9px 8px 17px;
  color: #e1efff;
  border: 1px solid rgba(139, 239, 241, 0.58);
  border-radius: 999px;
  background: rgba(9, 41, 88, 0.78);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(111, 227, 237, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 12px);
  animation: hero-scroll-enter 0.65s 4.55s both cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.splash__scroll:hover {
  color: var(--white);
  border-color: rgba(139, 239, 241, 0.68);
  background: rgba(13, 63, 116, 0.72);
}
.splash__scroll i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #8beff1;
  border: 1px solid rgba(139, 239, 241, 0.82);
  border-radius: 50%;
  box-shadow: inset 0 0 14px rgba(139, 239, 241, 0.08);
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  animation: scroll-nudge 1.8s infinite ease-in-out;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.contact .eyebrow {
  color: #7ce8f0;
}
.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px 1px 0;
  background: currentColor;
  border-radius: 50%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.99;
}
h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: var(--type-hero-heading);
}
h1 em {
  color: var(--blue);
  font-style: normal;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 13px 19px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: var(--white);
  background: var(--blue);
}
.button-primary:hover {
  background: var(--blue-dark);
}
.button span {
  font-size: 19px;
  line-height: 1;
}

@keyframes hero-eyebrow-enter {
  from {
    opacity: 0;
    letter-spacing: 0.22em;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.12em;
    transform: none;
  }
}
@keyframes hero-title-enter {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0);
    filter: blur(6px);
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    filter: blur(0);
    transform: none;
  }
}
@keyframes hero-lead-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
@keyframes hero-actions-enter {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-scroll-enter {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes hero-network-stage {
  0% {
    opacity: 0;
    transform: translate3d(
        var(--hero-network-stage-x),
        var(--hero-network-stage-y),
        0
      )
      scale(0.9);
  }
  22%,
  65% {
    opacity: 1;
    transform: translate3d(
        var(--hero-network-stage-x),
        var(--hero-network-stage-y),
        0
      )
      scale(1);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-path-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes hero-node-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(var(--enter-x), var(--enter-y), 0) scale(0.94);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
@keyframes hero-node-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(var(--drift-x), var(--drift-y), 0);
  }
}
@keyframes hero-core-enter {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-core-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(29, 148, 255, 0.22));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(72, 191, 255, 0.46));
    transform: scale(1.018);
  }
}
@keyframes scroll-nudge {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
}

.splash__eyebrow,
.splash h1,
.splash__lead,
.splash__support,
.splash__actions,
.splash__note,
.hero-network,
.hero-path,
.hero-network__node,
.hero-network__core,
.splash__scroll {
  animation-play-state: paused;
}
.splash.is-intro-ready .splash__eyebrow,
.splash.is-intro-ready h1,
.splash.is-intro-ready .splash__lead,
.splash.is-intro-ready .splash__support,
.splash.is-intro-ready .splash__actions,
.splash.is-intro-ready .splash__note,
.splash.is-intro-ready .hero-network,
.splash.is-intro-ready .hero-path,
.splash.is-intro-ready .hero-network__node,
.splash.is-intro-ready .hero-network__core,
.splash.is-intro-ready .splash__scroll {
  animation-play-state: running;
}

.intro-band {
  padding: 43px 0;
  color: var(--ink);
  background: #e9f7ff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 60px;
  align-items: start;
}
.intro-band .eyebrow {
  margin: 6px 0 0;
  color: var(--blue);
}
.intro-band p:last-child {
  margin: 0;
  font: 700 clamp(1.3rem, 2.25vw, 2rem)/1.2 var(--display);
  letter-spacing: -0.045em;
}

.client-logos {
  padding: 46px 0;
  background: linear-gradient(104deg, #dff3fc, #f1f9fd 52%, #dff3fc);
}
.client-logos__inner {
  text-align: center;
}
.client-logos__heading {
  max-width: 540px;
  margin: 0 auto 27px;
}
.client-logos__heading .eyebrow {
  margin-bottom: 5px;
}
.client-logos__heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.5;
}
.client-logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 32px;
  max-width: 980px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.client-logo {
  display: grid;
  flex: 0 1 18%;
  place-items: center;
  min-height: 52px;
  padding: 4px;
  opacity: 0.84;
}
.client-logo img {
  display: block;
  width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: contrast(1.58);
  mix-blend-mode: multiply;
}
.client-logo--two img {
  max-height: 52px;
}
.client-logo--four img {
  max-height: 58px;
}
.client-logo--five img {
  max-height: 50px;
}
.client-logo--six img {
  max-height: 20px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(38%) saturate(2050%)
    hue-rotate(184deg) brightness(92%) contrast(93%);
  mix-blend-mode: normal;
}
.client-logo--seven img {
  max-height: 26px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(38%) saturate(2050%)
    hue-rotate(184deg) brightness(92%) contrast(93%);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-bottom: 19px;
  font-size: var(--type-section-heading);
}
.section-heading > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--type-body);
}
.section-heading.compact {
  max-width: 610px;
}
.services {
  background: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 25px 27px 24px;
  border-right: 1px solid var(--line);
  transition:
    color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.service-card:first-child {
  border-left: 1px solid var(--line);
}
.service-card--featured,
.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.card-number {
  margin-bottom: 45px;
  color: #9aabbc;
  font-size: 12px;
  font-weight: 700;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 29px;
  color: var(--blue);
  background: #ecf0ff;
  font-size: 26px;
}
.service-card--featured .service-icon,
.service-card:hover .service-icon {
  color: var(--ink);
  background: var(--mint);
}
.service-card h3 {
  margin-bottom: 13px;
  font-size: var(--type-card-title);
}
.service-card > p:not(.card-number) {
  min-height: 83px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.6;
}
.service-card--featured > p:not(.card-number),
.service-card:hover > p:not(.card-number) {
  color: #b6c2d0;
}
.service-card ul {
  padding: 0;
  margin: 0;
  font-size: var(--type-small);
  font-weight: 700;
  line-height: 1.8;
  list-style: none;
}
.service-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}
.service-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin-top: auto;
  padding-top: 20px;
}
.service-card__links .service-card__link {
  margin-top: 0;
  padding-top: 0;
}
.service-card__link span {
  font-size: 16px;
  line-height: 1;
}
.service-card--featured .service-card__link,
.service-card:hover .service-card__link {
  color: var(--mint);
}
.service-card li::before {
  margin-right: 7px;
  color: var(--blue);
  content: "•";
}
.service-card--featured li::before,
.service-card:hover li::before {
  color: var(--mint);
}
.icon-flow {
  gap: 4px;
}
.icon-flow i {
  display: block;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}
.icon-flow i:nth-child(2) {
  width: 13px;
}
.icon-data {
  align-items: end;
  gap: 4px;
  padding: 14px;
}
.icon-data i {
  width: 25%;
  background: currentColor;
}
.icon-data i:nth-child(1) {
  height: 25%;
}
.icon-data i:nth-child(2) {
  height: 69%;
}
.icon-data i:nth-child(3) {
  height: 48%;
}
.icon-data i:nth-child(4) {
  height: 100%;
}

.approach {
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(
      circle at 100% 70%,
      rgba(0, 170, 184, 0.35),
      transparent 34%
    ),
    var(--ink);
}
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.section-heading.light .eyebrow {
  color: var(--mint);
}
.section-heading.light > p:last-child {
  color: #b7c4d5;
}
.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}
.process-list li {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 22px;
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.process-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.process-list span {
  color: var(--mint);
  font-size: var(--type-label);
  font-weight: 800;
}
.process-list h3 {
  margin: 0 0 10px;
  font-size: var(--type-card-title);
}
.process-list p {
  max-width: 370px;
  margin: 0;
  color: #afbdd0;
  font-size: var(--type-small);
}

.case-studies {
  border-top: 1px solid var(--line);
  background: var(--white);
}
.case-studies__heading {
  max-width: 760px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.case-study-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
}
.case-study-card--client {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}
.case-study-card--platform {
  background: var(--paper);
}
.case-study-card__eyebrow {
  margin: 0 0 36px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-study-card--client .case-study-card__eyebrow {
  color: var(--mint);
}
.case-study-card h3 {
  max-width: 460px;
  margin-bottom: 17px;
  font-size: var(--type-subheading);
}
.case-study-card
  > p:not(.case-study-card__eyebrow):not(.case-study-card__result) {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.65;
}
.case-study-card--client
  > p:not(.case-study-card__eyebrow):not(.case-study-card__result) {
  color: #c5d4e9;
}
.case-study-card__result {
  display: grid;
  gap: 4px;
  margin: 30px 0 0;
}
.case-study-card__result strong {
  color: var(--white);
  font: 600 var(--type-card-title)/1.08 var(--display);
  letter-spacing: -0.05em;
}
.case-study-card__result span {
  color: #b3c7df;
  font-size: var(--type-small);
  font-weight: 700;
}
.case-study-card__visual {
  margin: 29px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.case-study-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.case-study-card__visual figcaption {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}
.case-study-card__visual--neoband img {
  height: 230px;
  object-fit: cover;
  object-position: center;
}
.case-study-card__link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}
.case-study-card__link span {
  font-size: 18px;
  line-height: 1;
}
.case-study-card--client .case-study-card__link {
  color: #8beff1;
}

.faq {
  padding-top: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}
.faq .section-heading {
  margin: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font: 700 1.25rem/1.2 var(--display);
  letter-spacing: -0.04em;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--blue);
  font: 400 1.625rem/1rem var(--body);
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  max-width: 540px;
  margin: -2px 0 23px;
  color: var(--muted);
  font-size: var(--type-small);
}
.faq-list__link {
  margin: -8px 0 23px;
}

.privacy-data {
  border-top: 1px solid var(--line);
  background: #edf7ff;
}
.privacy-data--compact {
  padding: 44px 0;
}
.privacy-data__compact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.privacy-data__compact .eyebrow {
  margin-bottom: 12px;
}
.privacy-data__compact h2 {
  max-width: 520px;
  margin: 0;
  font-size: var(--type-subheading);
}
.privacy-data__compact p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}
.privacy-data__compact .text-link {
  margin-top: 16px;
}

.contact {
  padding: 110px 0;
  background:
    radial-gradient(circle at 76% 80%, #273a9c, transparent 40%), var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: start;
}
.contact-copy h2 {
  margin-bottom: 20px;
  font-size: var(--type-section-heading);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: #bbc8d9;
  font-size: var(--type-body);
}
.contact-next-steps {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  counter-reset: contact-step;
}
.contact-next-steps li {
  max-width: 450px;
  padding-left: 31px;
  color: #bbc8d9;
  font-size: var(--type-small);
  line-height: 1.5;
  counter-increment: contact-step;
  position: relative;
}
.contact-next-steps li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #7ce8f0;
  border: 1px solid rgba(124, 232, 240, 0.52);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  content: counter(contact-step);
}
.contact-next-steps strong {
  color: var(--white);
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
}
.contact-direct a {
  width: fit-content;
  color: var(--mint);
  border-bottom: 1px solid rgba(140, 231, 197, 0.4);
  font-size: var(--type-small);
  font-weight: 700;
}
.contact-form {
  padding: 33px;
  color: var(--ink);
  background: var(--white);
}
.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 11px 13px;
  color: #07523a;
  background: #e2faef;
  font-size: 13px;
}
.form-status.is-visible {
  display: block;
}
.form-status[data-status="invalid"],
.form-status[data-status="rate"],
.form-status[data-status="error"] {
  color: #7a2430;
  background: #fff0f1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.contact-form label {
  display: block;
  margin-bottom: 19px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #b7c2cf;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}
.contact-form textarea {
  min-height: 78px;
  resize: vertical;
}
.contact-form select {
  appearance: none;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%2307111f' d='m5.5 7-5-5h10z'/%3E%3C/svg%3E")
    right 7px center/11px 7px no-repeat;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.button-submit {
  width: 100%;
  margin-top: 3px;
}
.button-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}
.form-note {
  margin: 13px 0 0;
  color: #6b798b;
  font-size: 10px;
  line-height: 1.5;
}

.editorial-visual {
  margin: 38px 0;
}
.editorial-visual img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
}
.editorial-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.editorial-placeholder-quote {
  max-width: 700px;
  padding: 27px 30px;
  margin: 46px 0 34px;
  border-left: 4px solid var(--blue);
  background: #edf7ff;
}
.editorial-placeholder-quote p {
  margin: 0;
  color: var(--ink);
  font: 600 22px/1.42 var(--display);
  letter-spacing: -0.04em;
}
.editorial-placeholder-quote footer {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.editorial-placeholder-quote footer span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  color: var(--ink-soft);
  background: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 0.72fr 0.95fr 1.35fr;
  gap: 30px;
  align-items: center;
  padding: 46px 0;
}
.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-identity address {
  max-width: 265px;
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
  line-height: 1.5;
}
.footer-main > p {
  max-width: 290px;
  margin: 0;
  font-size: 13px;
}
.footer-links {
  display: grid;
  justify-content: end;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}
.footer-links__primary,
.footer-links__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 10px 18px;
}
.footer-links a,
.footer-links .cookie-settings-link {
  white-space: nowrap;
}
.footer-links .cookie-settings-link {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: 1.4;
}
.footer-links a:hover,
.footer-links .cookie-settings-link:hover {
  color: var(--blue);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  font-size: 10px;
}
.footer-base p {
  margin: 0;
}
.footer-base a:hover {
  color: var(--blue);
}

/* Clear commercial positioning */
.problems {
  background: var(--paper);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.problem-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.problem-card h3 {
  max-width: 300px;
  margin-bottom: 14px;
  font-size: var(--type-card-title);
}
.problem-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 30px;
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}
.text-link span {
  font-size: 17px;
  line-height: 1;
}
.contact-direct span {
  margin-top: 8px;
  color: #9eacc2;
  font-size: 12px;
  font-weight: 700;
}

/* Focused service landing pages */
.service-page {
  background: var(--paper);
}
.service-hero {
  padding: 92px 0 102px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(20, 150, 226, 0.28),
      transparent 28%
    ),
    var(--ink);
}
.service-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 95px;
  align-items: end;
}
.service-hero .eyebrow {
  color: #8beff1;
}
.service-hero__eyebrow {
  margin: 0 0 16px;
  color: #a7c5ea;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-hero h1 {
  max-width: 740px;
  color: var(--white);
  font-size: var(--type-hero-heading);
}
.service-hero__lead {
  max-width: 680px;
  margin: 0;
  color: #c6d6eb;
  font-size: var(--type-lead);
  line-height: 1.65;
}
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}
.service-hero__back {
  color: #b9d7ff;
  border-bottom: 1px solid rgba(185, 215, 255, 0.45);
  font-size: 13px;
  font-weight: 800;
}
.service-hero__panel {
  padding: 32px;
  border: 1px solid rgba(155, 224, 245, 0.45);
  background: rgba(9, 41, 88, 0.56);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
.service-hero__panel span {
  display: block;
  margin-bottom: 48px;
  color: #8beff1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-hero__panel strong {
  display: block;
  margin-bottom: 22px;
  color: var(--white);
  font: 600 var(--type-subheading)/1 var(--display);
  letter-spacing: -0.05em;
}
.service-hero__panel p {
  margin: 0;
  color: #b4c8e0;
  font-size: var(--type-small);
}
.service-detail {
  background: var(--white);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.service-detail article {
  min-height: 420px;
  padding: 42px;
  border: 1px solid var(--line);
}
.service-detail__deliver {
  color: var(--white);
  border-color: var(--ink) !important;
  background: var(--ink);
}
.service-detail__deliver .eyebrow {
  color: var(--mint);
}
.service-detail h2 {
  max-width: 420px;
  margin-bottom: 34px;
  font-size: var(--type-subheading);
}
.service-page-list {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-page-list li {
  display: flex;
  gap: 12px;
  max-width: 440px;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.5;
}
.service-page-list li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}
.service-detail__deliver .service-page-list li {
  color: #c6d6eb;
}
.service-detail__deliver .service-page-list li::before {
  background: var(--mint);
}
.service-content {
  background: var(--paper);
}
.service-content__heading {
  max-width: 780px;
  margin-bottom: 46px;
}
.service-content__heading h2 {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: var(--type-section-heading);
}
.service-content__heading > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
}
.service-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-scenario {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.service-scenario > span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.service-scenario h3 {
  max-width: 270px;
  margin-bottom: 13px;
  font-size: var(--type-card-title);
}
.service-scenario p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.6;
}
.service-content__faq {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
  margin-top: 84px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}
.service-content__faq h2 {
  max-width: 390px;
  margin: 0;
  font-size: var(--type-subheading);
}
.service-cta {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 80%, #273a9c, transparent 40%), var(--ink);
}
.service-cta__inner {
  max-width: 820px;
}
.service-cta .eyebrow {
  color: var(--mint);
}
.service-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: var(--type-section-heading);
}
.service-cta p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: #bbc8d9;
  font-size: var(--type-body);
}
.service-footer {
  border-top: 1px solid var(--line);
}
.service-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.service-footer__inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.service-footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: 13px;
  font-weight: 700;
}
.service-footer__inner a {
  color: var(--ink-soft);
}
.service-footer__inner a:hover {
  color: var(--blue);
}

/* Company, legal and case-study pages */
.editorial-page {
  background: var(--paper);
}
.editorial-hero {
  padding: 92px 0 88px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(20, 150, 226, 0.28),
      transparent 28%
    ),
    var(--ink);
}
.editorial-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 70px;
  align-items: end;
}
.editorial-hero .eyebrow {
  color: #8beff1;
}
.editorial-hero h1 {
  max-width: 840px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: var(--type-hero-heading);
}
.editorial-hero__lead {
  max-width: 710px;
  margin: 0;
  color: #c6d6eb;
  font-size: var(--type-lead);
  line-height: 1.65;
}
.editorial-hero__aside {
  padding: 28px;
  border: 1px solid rgba(155, 224, 245, 0.45);
  background: rgba(9, 41, 88, 0.56);
}
.editorial-hero__aside span {
  display: block;
  margin-bottom: 12px;
  color: #8beff1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.editorial-hero__aside p {
  margin: 0;
  color: #c6d6eb;
  font-size: 14px;
}
.editorial-content {
  max-width: 850px;
}
.editorial-content h2 {
  margin: 58px 0 16px;
  font-size: var(--type-subheading);
}
.editorial-content h2:first-child {
  margin-top: 0;
}
.editorial-content h3 {
  margin: 30px 0 10px;
  font-size: var(--type-card-title);
}
.editorial-content p,
.editorial-content li {
  color: var(--muted);
}
.editorial-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}
.editorial-content a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}
.editorial-content .button-primary {
  color: var(--white);
  border-bottom: 0;
}
.editorial-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
}
.editorial-meta div {
  padding: 20px;
  background: var(--white);
}
.editorial-meta strong,
.editorial-meta span {
  display: block;
}
.editorial-meta strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.editorial-meta span {
  color: var(--ink);
  font: 600 var(--type-body)/1.25 var(--display);
  letter-spacing: -0.03em;
}
.notice-date {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
/* About page */
.about-page {
  background: var(--paper);
}
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  color: var(--white);
  background: #071936;
  isolation: isolate;
}
.about-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(140, 218, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 218, 255, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}
.about-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.about-hero__glow--one {
  top: 4%;
  left: 16%;
  width: 370px;
  height: 370px;
  background: radial-gradient(
    circle,
    rgba(12, 116, 255, 0.24),
    transparent 68%
  );
}
.about-hero__glow--two {
  right: 8%;
  bottom: -20%;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(23, 207, 225, 0.16),
    transparent 70%
  );
}
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: end;
}
.about-hero__copy {
  max-width: 760px;
}
.about-hero h1 {
  max-width: 720px;
  margin-bottom: 23px;
  color: #f6fbff;
  font-size: var(--type-hero-heading);
}
.about-hero h1 em {
  color: #6fe3ed;
}
.about-hero__copy > p:not(.splash__eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #c1d1e8;
  font-size: var(--type-lead);
  line-height: 1.65;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
}
.about-hero__panel {
  padding: 26px;
  border: 1px solid rgba(155, 224, 245, 0.45);
  background: rgba(9, 41, 88, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
.about-hero__panel > p {
  margin: 0 0 32px;
  color: #8beff1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-hero__panel-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(167, 213, 244, 0.18);
}
.about-hero__panel-item > span {
  color: #8beff1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.about-hero__panel-item strong,
.about-hero__panel-item small {
  display: block;
}
.about-hero__panel-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font: 600 19px/1.1 var(--display);
  letter-spacing: -0.04em;
}
.about-hero__panel-item small {
  color: #b7c9df;
  font-size: 12px;
  line-height: 1.45;
}
.about-intro {
  padding: 48px 0;
  background: #e9f7ff;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 64px;
  align-items: start;
}
.about-intro .eyebrow {
  margin: 8px 0 0;
}
.about-intro h2 {
  max-width: 870px;
  margin: 0;
  font-size: var(--type-subheading);
}
.about-fit {
  background: var(--white);
}
.about-fit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-fit__grid article {
  min-height: 276px;
  padding: 29px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.about-fit__grid article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.about-fit__grid h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: var(--type-card-title);
}
.about-fit__grid p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.6;
}
.about-fit__criteria {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  margin-top: 78px;
  padding-top: 78px;
  border-top: 1px solid var(--line);
}
.about-fit__criteria .section-heading {
  margin: 0;
}
.about-fit__criteria-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-fit__criteria-card {
  min-height: 318px;
  padding: 30px;
  border: 1px solid var(--line);
}
.about-fit__criteria-card--positive {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}
.about-fit__criteria-card > p {
  margin: 0 0 55px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-fit__criteria-card--positive > p {
  color: var(--mint);
}
.about-fit__criteria-card h3 {
  max-width: 260px;
  margin-bottom: 24px;
  font-size: var(--type-card-title);
}
.about-fit__criteria-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.about-fit__criteria-card li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.55;
}
.about-fit__criteria-card li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}
.about-fit__criteria-card--positive li {
  color: #c7d5e6;
}
.about-fit__criteria-card--positive li::before {
  background: var(--mint);
}
.about-method {
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 96% 78%,
      rgba(0, 170, 184, 0.33),
      transparent 30%
    ),
    var(--ink);
}
.about-method__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(52px, 9vw, 144px);
  align-items: start;
}
.about-method .eyebrow {
  color: var(--mint);
}
.about-method h2 {
  max-width: 610px;
  margin-bottom: 23px;
  font-size: var(--type-section-heading);
}
.about-method__grid > div:first-child > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 18px;
  color: #bcc9d9;
  font-size: var(--type-body);
  line-height: 1.7;
}
.about-method__side {
  display: grid;
  gap: 50px;
}
.about-method__points {
  display: grid;
  gap: 1px;
  background: rgba(194, 223, 245, 0.24);
}
.about-method__points span {
  padding: 22px 25px;
  color: #d6e6f6;
  background: rgba(9, 41, 88, 0.34);
  font: 600 var(--type-card-title)/1.2 var(--display);
  letter-spacing: -0.04em;
}
.about-method__points span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 2px 0;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}
.about-company {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: rgba(194, 223, 245, 0.24);
}
.about-company div {
  min-height: 120px;
  padding: 19px;
  background: rgba(9, 41, 88, 0.34);
}
.about-company dt {
  margin-bottom: 17px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-company dd {
  margin: 0;
  color: var(--white);
  font: 600 15px/1.25 var(--display);
  letter-spacing: -0.035em;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 960px) {
  .splash {
    min-height: calc(100svh - 86px);
    padding: 108px 0 72px;
  }
  .splash__grid,
  .approach-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .splash__grid {
    min-height: 0;
    padding: 0;
  }
  .hero-network {
    display: none;
  }
  .splash__copy {
    position: static;
    max-width: 620px;
  }
  .splash__eyebrow {
    animation-delay: 0.15s;
  }
  .splash h1 {
    animation-delay: 0.25s;
  }
  .splash__lead {
    animation-delay: 0.45s;
  }
  .splash__actions {
    animation-delay: 0.75s;
  }
  .splash__scroll {
    animation-delay: 1.15s;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(3),
  .service-card:nth-child(5) {
    border-left: 1px solid var(--line);
  }
  .privacy-data__compact,
  .service-content__faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-scenarios {
    grid-template-columns: 1fr;
  }
  .service-scenario {
    min-height: 0;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    grid-column: 1 / -1;
    justify-content: start;
  }
  .footer-links__primary,
  .footer-links__legal {
    justify-content: start;
  }
  :is(.service-page, .about-page, .editorial-page) .menu-toggle {
    display: flex;
  }
  :is(.service-page, .about-page, .editorial-page) .site-nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 32px 19px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  :is(.service-page, .about-page, .editorial-page) .site-nav.is-open {
    display: flex;
  }
  :is(.service-page, .about-page, .editorial-page) .site-nav > a {
    padding: 13px 0;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 34px), 1180px);
  }
  .section {
    padding: 78px 0;
  }
  .header-inner {
    min-height: 70px;
  }
  .site-header {
    position: absolute;
  }
  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 17px 19px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > a {
    padding: 13px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .splash {
    min-height: calc(100svh - 70px);
    padding: 108px 0 76px;
  }
  .splash__grid {
    gap: 0;
  }
  .splash h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9vw, 3.1rem);
    line-height: 0.98;
  }
  .splash__lead {
    margin-bottom: 0;
    font-size: var(--type-body);
  }
  .splash__support {
    font-size: var(--type-small);
  }
  .splash__actions {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .hero-network {
    display: none;
  }
  .splash__scroll {
    bottom: 14px;
    font-size: 9px;
  }
  .intro-band {
    padding: 32px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .intro-band p:last-child {
    font-size: 21px;
  }
  .client-logos {
    padding: 34px 0;
  }
  .client-logos__heading {
    margin-bottom: 20px;
  }
  .client-logo-list {
    gap: 16px 18px;
  }
  .client-logo {
    flex-basis: 27%;
    min-height: 42px;
    padding: 3px;
  }
  .client-logo img {
    max-height: 30px;
  }
  .client-logo--two img,
  .client-logo--four img,
  .client-logo--five img {
    max-height: 38px;
  }
  .client-logo--six img,
  .client-logo--seven img {
    max-height: 28px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading > p:last-child,
  .service-content__heading > p:last-child {
    font-size: var(--type-small);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 330px;
    border-bottom: 1px solid var(--line);
  }
  .service-card,
  .service-card:first-child,
  .service-card:nth-child(3),
  .service-card:nth-child(5) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .card-number {
    margin-bottom: 29px;
  }
  .service-card > p:not(.card-number) {
    min-height: auto;
  }
  .approach {
    padding: 78px 0;
  }
  .approach-grid {
    gap: 32px;
  }
  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .process-list h3 {
    font-size: var(--type-card-title);
  }
  .faq {
    padding-top: 20px;
  }
  .faq-grid {
    gap: 32px;
  }
  .privacy-data--compact {
    padding: 36px 0;
  }
  .privacy-data__compact {
    gap: 17px;
  }
  .contact {
    padding: 76px 0;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-form {
    padding: 23px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-links {
    justify-content: start;
  }
  .footer-base {
    flex-direction: column;
    gap: 7px;
  }
  .footer-main {
    padding: 34px 0;
  }
}
@media (max-width: 960px) {
  .problem-grid,
  .about-fit__criteria {
    grid-template-columns: 1fr;
  }
  .about-fit__criteria {
    gap: 42px;
  }
  .problem-card {
    min-height: 0;
  }
  .problem-card > span {
    margin-bottom: 35px;
  }
  .service-hero__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .service-hero__grid {
    gap: 45px;
  }
  .editorial-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-hero__grid,
  .about-intro__grid,
  .about-method__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__grid {
    gap: 42px;
  }
  .about-intro__grid {
    gap: 17px;
  }
  .about-intro .eyebrow {
    margin-top: 0;
  }
  .about-method__grid {
    gap: 50px;
  }
  .about-fit__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .problem-card {
    padding: 24px;
  }
  .problem-card > span {
    margin-bottom: 28px;
  }
  .problem-card h3 {
    font-size: var(--type-card-title);
  }
  .case-study-card {
    min-height: 0;
    padding: 29px 24px;
  }
  .case-study-card__eyebrow {
    margin-bottom: 38px;
  }
  .case-study-card h3 {
    font-size: var(--type-subheading);
  }
  .service-hero {
    padding: 64px 0 72px;
  }
  .service-hero__panel {
    padding: 25px;
  }
  .service-hero__panel span {
    margin-bottom: 30px;
  }
  .service-hero__lead {
    font-size: var(--type-body);
  }
  .service-detail article {
    min-height: 0;
    padding: 27px 24px;
  }
  .service-content__heading {
    margin-bottom: 34px;
  }
  .service-scenario {
    padding: 24px;
  }
  .service-scenario > span {
    margin-bottom: 32px;
  }
  .service-content__faq {
    margin-top: 58px;
    padding-top: 48px;
  }
  .service-content__faq .faq-list summary {
    font-size: 19px;
  }
  .service-cta {
    padding: 76px 0;
  }
  .service-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }
  .service-footer__inner nav {
    justify-content: flex-start;
  }
  .editorial-hero {
    padding: 64px 0 72px;
  }
  .editorial-hero__lead {
    font-size: var(--type-body);
  }
  .editorial-meta {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 72px 0 68px;
  }
  .about-hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.1rem);
  }
  .about-hero__copy > p:not(.splash__eyebrow) {
    font-size: var(--type-body);
  }
  .about-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-hero__panel {
    padding: 22px;
  }
  .about-intro {
    padding: 34px 0;
  }
  .about-intro h2 {
    font-size: var(--type-subheading);
  }
  .about-fit__grid,
  .about-fit__criteria-cards,
  .about-company {
    grid-template-columns: 1fr;
  }
  .about-fit__grid article {
    min-height: 0;
    padding: 25px;
  }
  .about-fit__grid article > span {
    margin-bottom: 34px;
  }
  .about-fit__criteria {
    gap: 36px;
    margin-top: 52px;
    padding-top: 52px;
  }
  .about-fit__criteria-card {
    min-height: 0;
    padding: 25px;
  }
  .about-fit__criteria-card > p {
    margin-bottom: 36px;
  }
  .about-method {
    padding: 78px 0;
  }
  .about-method h2 {
    font-size: var(--type-section-heading);
  }
  .about-method__grid > div:first-child > p:not(.eyebrow) {
    font-size: var(--type-small);
  }
  .about-method__side {
    gap: 32px;
  }
  .about-method__points span {
    padding: 20px;
    font-size: 18px;
  }
  .about-company div {
    min-height: 0;
  }
}
@media (max-width: 680px) {
  #intro-band,
  #faq,
  #privacy-data {
    scroll-margin-top: 70px;
  }
  .site-header {
    position: sticky;
  }
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 17px;
    width: calc(100% - 24px);
    padding: 20px;
  }
  .cookie-consent__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .cookie-consent__reject {
    padding: 10px 4px;
  }
  body {
    padding-bottom: 86px;
  }
  .button.mobile-contact-cta {
    position: fixed;
    right: 17px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 17px;
    z-index: 90;
    display: flex;
    justify-content: space-between;
    min-height: 54px;
    padding: 13px 18px;
    box-shadow: 0 12px 30px rgba(7, 91, 221, 0.28);
  }
  .back-to-top {
    right: 17px;
    bottom: 84px;
    justify-content: center;
    width: 46px;
    min-height: 46px;
    padding: 0;
  }
  .back-to-top__label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .hero-pulse {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
