:root {
  color-scheme: dark;
  --bg: #0a0c10;
  --bg-2: #0f1320;
  --brand-2: #1fb6ff;
  --brand-3: #69f;
  --white: #fff;
  --ice: #cfe7ff;
  --ice-2: #d9eeff;
  --muted: #a8b3c7;
  --panel: 255 255 255;
  --line: rgba(255, 255, 255, .12);
  --line-blue: rgba(31, 182, 255, .25);
  --shadow-1: 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-2: 0 4px 14px rgba(31, 182, 255, .25);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shell: 1456px;
  --section-pad: clamp(78px, 9vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(102, 153, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 153, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 82%);
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 4px;
}

.sheen {
  position: fixed;
  inset: -20% -20% auto auto;
  z-index: -1;
  width: 80vmax;
  height: 80vmax;
  pointer-events: none;
  background:
    radial-gradient(35% 35% at 60% 40%, rgba(31, 182, 255, .12), transparent 65%),
    radial-gradient(40% 40% at 40% 60%, rgba(102, 153, 255, .12), transparent 70%);
  filter: blur(60px) saturate(110%);
  animation: float 14s ease-in-out infinite alternate;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(10, 12, 16, .82);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav {
  min-height: 94px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
}

.brand svg {
  display: block;
  width: auto;
  height: 70px;
  fill: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.2vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 600;
}

.nav-link,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color .2s;
}

.nav-link::after {
  position: absolute;
  right: 100%;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brand-2);
  transition: right .2s;
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
  color: var(--white);
}

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

.dropdown-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: min(680px, 76vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(15, 19, 32, .97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s, transform .18s;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-item {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color .2s, background .2s, transform .2s;
}

.dropdown-panel > .dropdown-item:last-child {
  grid-column: 1 / -1;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  border-color: rgba(31, 182, 255, .25);
  background: rgba(31, 182, 255, .08);
  transform: translateY(-1px);
}

.dropdown-item strong {
  color: var(--white);
  font-size: 13px;
}

.dropdown-item span {
  color: rgba(207, 231, 255, .62);
  font-size: 11px;
  line-height: 1.45;
}

.nav-cta,
.button-secondary,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta {
  min-height: 42px;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  box-shadow: var(--shadow-2);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s, filter .18s;
}

.nav-cta::after {
  content: "↗";
  font-size: 15px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 22px rgba(31, 182, 255, .35);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 1px;
  display: block;
  content: "";
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

.menu-toggle span {
  margin-block: 5px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 0 22px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu a::after {
  content: "↗";
  color: var(--brand-2);
}

.button-primary {
  min-height: 52px;
  gap: 12px;
  padding: 0 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(270deg, var(--brand-2), var(--brand-3), var(--brand-2));
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
  box-shadow: var(--shadow-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s, filter .2s;
}

.button-primary::after {
  content: "→";
  font-size: 17px;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 34px rgba(31, 182, 255, .35);
}

.button-secondary {
  min-height: 52px;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(207, 231, 255, .24);
  color: rgba(207, 231, 255, .76);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  transition: color .2s, border-color .2s, transform .2s;
}

.button-secondary::after {
  content: "↘";
  color: var(--brand-3);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: var(--brand-2);
  transform: translateY(-1px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--brand-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: var(--brand-2);
  box-shadow: 0 0 12px rgba(31, 182, 255, .5);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(540px, .98fr);
  align-items: center;
  gap: clamp(62px, 7vw, 110px);
  padding-block: clamp(72px, 8vw, 112px);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(102, 153, 255, .17), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 5.5vw, 88px);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--brand-2), #9bd3ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 730px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.motion-line {
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 20px 0 0;
  color: var(--ice);
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.rotate-words {
  position: relative;
  width: 84px;
  height: 22px;
  display: inline-grid;
  align-items: center;
  overflow: hidden;
  color: var(--brand-2);
}

.rotate-words span {
  grid-area: 1 / 1;
  opacity: 0;
  line-height: 22px;
  transform: translateY(12px);
  animation: wordCycle 9s ease-in-out infinite;
}

.rotate-words span:nth-child(2) {
  animation-delay: 3s;
}

.rotate-words span:nth-child(3) {
  animation-delay: 6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.client-proof {
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(15, 19, 32, .3);
}

.client-proof-inner {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(190px, .36fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding-block: 30px;
}

.client-proof p {
  max-width: 230px;
  margin: 0;
  color: rgba(207, 231, 255, .52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.client-logos img {
  width: auto;
  height: 42px;
  max-width: 118px;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(95%) brightness(120%);
  opacity: .66;
  transition: filter .25s, opacity .25s, transform .25s;
}

.client-logos .client-logo-digimy {
  max-width: 126px;
}

.client-logos .client-logo-cocon {
  height: 64px;
  max-width: 70px;
}

.client-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.system-panel {
  position: relative;
  z-index: 2;
  min-height: 536px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(102, 153, 255, .3);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 12%, rgba(31, 182, 255, .12), transparent 31%),
    radial-gradient(circle at 9% 88%, rgba(102, 153, 255, .11), transparent 30%),
    linear-gradient(145deg, rgba(20, 26, 43, .96), rgba(10, 12, 16, .98));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .035);
}

.system-panel::before {
  position: absolute;
  inset: -35%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: conic-gradient(from 210deg, transparent 0 68%, rgba(102, 153, 255, .07) 76%, transparent 84%);
  animation: panelAura 14s linear infinite;
}

.system-canvas {
  position: relative;
  z-index: 1;
  min-height: 536px;
  display: grid;
  align-items: center;
  padding: 34px 28px;
}

.service-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  grid-template-rows: 156px 48px 156px;
  grid-template-areas:
    "ads one conversion two tracking"
    ". . . . three"
    "revenue five automation four crm";
  align-items: stretch;
}

.system-node {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 15px 17px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(132, 173, 255, .21);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(25, 32, 52, .84), rgba(13, 17, 27, .94));
  box-shadow:
    0 17px 36px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .025);
  transform: translateY(0);
  animation: nodeFlow 10.8s cubic-bezier(.22, 1, .36, 1) infinite;
  animation-delay: var(--node-delay);
}

.system-node::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 22px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand-3), var(--brand-2));
  box-shadow: 0 0 10px rgba(31, 182, 255, .24);
  transform-origin: left;
  animation: nodeAccent 10.8s cubic-bezier(.22, 1, .36, 1) infinite;
  animation-delay: var(--node-delay);
}

.system-node::after {
  position: absolute;
  inset: -45% -20%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(31, 182, 255, .14), transparent 58%);
  opacity: 0;
  animation: nodeGlow 10.8s ease infinite;
  animation-delay: var(--node-delay);
}

.node-ads { grid-area: ads; }
.node-conversion { grid-area: conversion; }
.node-tracking { grid-area: tracking; }
.node-crm { grid-area: crm; }
.node-automation { grid-area: automation; }
.node-revenue {
  grid-area: revenue;
  border-color: rgba(31, 182, 255, .34);
  background: linear-gradient(145deg, rgba(24, 45, 62, .92), rgba(12, 22, 32, .97));
}

.system-node strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(14px, 1.25vw, 17px);
  letter-spacing: -.025em;
  line-height: 1.08;
}

.node-index {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  color: rgba(207, 231, 255, .27);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.node-tools {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(207, 231, 255, .56);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.55;
}

.flow-connector {
  position: relative;
  align-self: center;
  width: 100%;
  height: 14px;
}

.connector-one { grid-area: one; }
.connector-two { grid-area: two; }
.connector-three { grid-area: three; }
.connector-four { grid-area: four; }
.connector-five { grid-area: five; }

.flow-connector::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(102, 153, 255, .18), rgba(31, 182, 255, .4));
  box-shadow: 0 0 10px rgba(31, 182, 255, .1);
}

.flow-connector i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dff6ff;
  box-shadow:
    0 0 0 3px rgba(31, 182, 255, .12),
    0 0 17px 4px rgba(31, 182, 255, .72);
  opacity: 0;
  transform: translate(0, -50%);
  animation: signalTravel 10.8s cubic-bezier(.45, 0, .2, 1) infinite;
  animation-delay: var(--link-delay);
}

.flow-connector.is-reverse::before {
  background: linear-gradient(90deg, rgba(31, 182, 255, .4), rgba(102, 153, 255, .18));
}

.flow-connector.is-reverse i {
  right: -4px;
  left: auto;
  animation-name: signalTravelReverse;
}

.flow-connector.is-vertical {
  align-self: stretch;
  justify-self: center;
  width: 14px;
  height: 100%;
}

.flow-connector.is-vertical::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: auto;
  background: linear-gradient(rgba(102, 153, 255, .18), rgba(31, 182, 255, .4));
}

.flow-connector.is-vertical i {
  top: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  animation-name: signalTravelVertical;
}

.section {
  padding-block: var(--section-pad);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.section-soft {
  background: rgba(15, 19, 32, .34);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .58fr);
  align-items: end;
  gap: 64px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-heading h2 {
  max-width: 880px;
  font-size: clamp(44px, 5vw, 76px);
}

.section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
  line-height: 1.72;
}

.problem-grid,
.expertise-grid,
.offer-grid,
.stack-grid,
.method-grid,
.info-grid,
.related-grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
}

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

.problem-card,
.expertise-card,
.offer-card,
.stack-card,
.method-card,
.info-card,
.related-card {
  position: relative;
  background: rgba(10, 12, 16, .94);
}

.problem-card {
  min-height: 260px;
  padding: 32px;
}

.card-index {
  color: var(--brand-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.problem-card h3,
.expertise-card h3,
.offer-card h3,
.stack-card h3,
.method-card h3,
.info-card h3,
.related-card h3 {
  margin: 36px 0 14px;
  color: var(--white);
  font-size: 21px;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.problem-card p,
.expertise-card p,
.offer-card p,
.stack-card p,
.method-card p,
.info-card p,
.related-card p {
  margin: 0;
  color: rgba(207, 231, 255, .62);
  font-size: 14px;
  line-height: 1.7;
}

.system-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
}

.system-card {
  position: relative;
  min-height: 270px;
  grid-column: span 2;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 182, 255, .06), transparent 34%),
    rgba(10, 12, 16, .96);
  transition: background .25s, transform .25s;
}

.system-card:nth-child(4),
.system-card:nth-child(5) {
  grid-column: span 3;
}

.system-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand-3), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.system-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(31, 182, 255, .42);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(31, 182, 255, .04);
}

.system-card:hover {
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 182, 255, .12), transparent 38%),
    rgba(15, 19, 32, .98);
}

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

.system-card h3 {
  margin: 48px 0 15px;
  color: var(--white);
  font-size: 24px;
  letter-spacing: -.03em;
}

.system-card p {
  max-width: 470px;
  margin: 0;
  color: rgba(207, 231, 255, .62);
  font-size: 14px;
  line-height: 1.72;
}

.system-transverse {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(180px, .4fr) minmax(180px, .38fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  border: 1px solid rgba(31, 182, 255, .22);
  border-top: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(31, 182, 255, .1), transparent 30%),
    rgba(15, 19, 32, .7);
}

.system-transverse span {
  color: rgba(207, 231, 255, .42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.system-transverse strong {
  color: var(--ice);
  font-size: 14px;
}

.system-transverse p {
  margin: 0;
  color: rgba(207, 231, 255, .58);
  font-size: 13px;
  line-height: 1.6;
}

.system-section {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.system-copy {
  position: sticky;
  top: 140px;
}

.system-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 67px);
  letter-spacing: -.05em;
  line-height: 1;
}

.system-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .64);
  line-height: 1.72;
}

.system-list {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.system-row {
  display: grid;
  grid-template-columns: 70px minmax(150px, .46fr) 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.system-row span {
  color: var(--brand-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.system-row h3 {
  margin: 0;
  font-size: 20px;
}

.system-row p {
  margin: 0;
  color: rgba(207, 231, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  transition: background .2s;
}

.offer-card:hover {
  background: rgba(15, 19, 32, .98);
}

.offer-card.featured {
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 182, 255, .12), transparent 34%),
    rgba(10, 12, 16, .96);
}

.offer-tag {
  color: var(--brand-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 42px;
  font-size: 26px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
}

.card-link::after {
  content: "→";
  color: var(--brand-2);
  font-size: 17px;
  transition: transform .2s;
}

.card-link:hover::after,
.card-link:focus-visible::after {
  transform: translateX(4px);
}

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

.method-card {
  min-height: 280px;
  padding: 30px;
}

.method-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand-3), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

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

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

.expertise-card {
  min-height: 280px;
  padding: 30px;
}

.expertise-card h3 {
  margin-top: 45px;
}

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

.stack-card {
  min-height: 240px;
  padding: 28px;
}

.tool-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tool-list li,
.pill {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(31, 182, 255, .22);
  border-radius: 999px;
  color: var(--ice);
  background: rgba(31, 182, 255, .07);
  font-size: 11px;
  font-weight: 650;
}

.newsletter-hero {
  min-height: calc(100svh - 94px);
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background:
    radial-gradient(circle at 50% 38%, rgba(31, 182, 255, .1), transparent 32%),
    linear-gradient(rgba(102, 153, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 153, 255, .035) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.newsletter-hero-inner {
  max-width: 1060px;
  padding-block: clamp(72px, 9vw, 126px);
  text-align: center;
}

.newsletter-hero .eyebrow {
  justify-content: center;
}

.newsletter-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .96;
}

.newsletter-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.newsletter-hero-form {
  width: min(100%, 700px);
  margin: 38px auto 0;
  text-align: left;
}

.newsletter-hero-form .form-note {
  text-align: center;
}

.newsletter-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(207, 231, 255, .48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  list-style: none;
  text-transform: uppercase;
}

.newsletter-topics li + li::before {
  margin-right: 9px;
  color: var(--brand-2);
  content: "·";
}

.newsletter-form {
  display: block;
}

.newsletter-form [data-style="clean"] {
  width: 100%;
}

.newsletter-form .formkit-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
}

.newsletter-form .formkit-field {
  min-width: 0;
}

.newsletter-form label {
  grid-column: 1 / -1;
  color: var(--ice);
  font-size: 12px;
  font-weight: 700;
}

.newsletter-form input {
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 0 16px;
  color: #fff;
  background: rgba(10, 12, 16, .74);
}

.newsletter-form input::placeholder {
  color: rgba(207, 231, 255, .42);
}

.newsletter-form input:focus {
  border-color: rgba(31, 182, 255, .72);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(31, 182, 255, .1);
}

.newsletter-form .formkit-submit {
  position: relative;
  margin: 0;
}

.newsletter-form .formkit-alert {
  margin: 0 0 12px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 113, 91, .34);
  border-radius: 12px;
  color: #ffd2cb;
  background: rgba(184, 52, 35, .14);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.newsletter-form .formkit-alert:empty {
  display: none;
}

.newsletter-form .formkit-alert-success,
.newsletter-form .seva-custom-content {
  padding: 15px 17px;
  border: 1px solid rgba(31, 182, 255, .28);
  border-radius: 14px;
  color: var(--ice);
  background: rgba(31, 182, 255, .08);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.formkit-spinner {
  display: none;
  align-items: center;
  gap: 4px;
}

.formkit-spinner span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: formkitPulse .9s ease-in-out infinite alternate;
}

.formkit-spinner span:nth-child(2) {
  animation-delay: .15s;
}

.formkit-spinner span:nth-child(3) {
  animation-delay: .3s;
}

.formkit-submit[data-active] .formkit-spinner {
  display: inline-flex;
}

.formkit-submit[data-active] > span:last-child,
.formkit-submit[data-active]::after {
  display: none;
}

.formkit-powered-by-convertkit-container {
  display: flex;
  justify-content: center;
}

.formkit-powered-by-convertkit {
  margin-top: 10px;
  color: rgba(207, 231, 255, .36);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.formkit-powered-by-convertkit:hover,
.formkit-powered-by-convertkit:focus-visible,
.form-note a:hover,
.form-note a:focus-visible {
  color: var(--ice);
}

.form-note a {
  color: rgba(207, 231, 255, .76);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes formkitPulse {
  from { opacity: .28; transform: translateY(1px); }
  to { opacity: 1; transform: translateY(-1px); }
}

.form-note {
  grid-column: 1 / -1;
  min-height: 19px;
  margin: 2px 0 0;
  color: rgba(207, 231, 255, .56);
  font-size: 11px;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .48fr);
  align-items: end;
  gap: clamp(52px, 8vw, 120px);
  padding-block: clamp(86px, 11vw, 160px) clamp(72px, 9vw, 120px);
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(54px, 6.2vw, 94px);
}

.page-hero-copy > p {
  max-width: 800px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.67;
}

.page-hero-aside {
  padding: 24px 0 4px 26px;
  border-left: 1px solid rgba(31, 182, 255, .34);
}

.page-hero-aside span {
  display: block;
  color: rgba(207, 231, 255, .44);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-hero-aside strong {
  display: block;
  margin-top: 10px;
  color: var(--ice);
  font-size: 15px;
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(207, 231, 255, .46);
  font-size: 11px;
}

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

.breadcrumb span::before {
  margin-right: 9px;
  content: "/";
  color: var(--brand-2);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.content-split + .content-split {
  margin-top: 94px;
}

.content-label {
  position: sticky;
  top: 140px;
}

.content-label h2 {
  margin: 0;
  font-size: clamp(33px, 3.5vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.content-label p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  line-height: 1.7;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-height: 230px;
  padding: 28px;
}

.info-card h3 {
  margin-top: 34px;
}

.ordered-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.ordered-list li {
  display: grid;
  grid-template-columns: 62px minmax(170px, .5fr) 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ordered-list .number {
  color: var(--brand-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ordered-list strong {
  font-size: 17px;
}

.ordered-list p {
  margin: 0;
  color: rgba(207, 231, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}

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

.kpi-list li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(102, 153, 255, .28);
  border-radius: 10px;
  color: var(--ice);
  background: rgba(15, 19, 32, .64);
  font-size: 13px;
  font-weight: 650;
}

.faq {
  max-width: 980px;
  margin-inline: auto;
}

.faq details {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.faq summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--brand-2);
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 820px;
  margin: -4px 0 28px;
  color: rgba(207, 231, 255, .64);
  line-height: 1.7;
}

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

.related-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.related-card h3 {
  margin-top: 32px;
}

.closing {
  padding: clamp(58px, 8vw, 96px);
  border: 1px solid rgba(31, 182, 255, .24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 15%, rgba(31, 182, 255, .15), transparent 34%),
    rgba(15, 19, 32, .74);
}

.closing h2 {
  max-width: 920px;
  font-size: clamp(44px, 5vw, 76px);
}

.closing p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.7;
}

.closing .hero-actions {
  margin-top: 30px;
}

.site-footer {
  margin-top: var(--section-pad);
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(10, 12, 16, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, .55fr));
  gap: 48px;
  padding-block: 64px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(207, 231, 255, .58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand .footer-location {
  margin-top: 12px;
  color: rgba(207, 231, 255, .82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .025);
  transition: color .2s, border-color .2s, background .2s, transform .2s, box-shadow .2s;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(31, 182, 255, .5);
  color: var(--white);
  background: linear-gradient(135deg, rgba(31, 182, 255, .17), rgba(94, 71, 255, .2));
  box-shadow: 0 8px 24px rgba(31, 182, 255, .13);
  transform: translateY(-2px);
}

.social-glyph {
  position: relative;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.social-facebook {
  padding-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.social-instagram {
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
}

.social-instagram::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.social-instagram::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.social-linkedin {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.07em;
}

.social-youtube {
  width: 19px;
  height: 14px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
}

.social-youtube::before {
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid currentColor;
  content: "";
  transform: translateX(1px);
}

.footer-col h2 {
  margin: 0 0 18px;
  color: rgba(207, 231, 255, .42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  transition: color .2s, transform .2s;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(207, 231, 255, .42);
  font-size: 11px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal {
  max-width: 900px;
  padding-block: 90px;
}

.legal h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -.05em;
}

.legal h2 {
  margin: 46px 0 13px;
  font-size: 24px;
}

.legal p,
.legal li {
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.legal a {
  color: var(--brand-2);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@keyframes float {
  from {
    transform: translate(0, 0) rotate(0);
  }
  to {
    transform: translate(-4vw, 2vh) rotate(8deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes panelAura {
  to {
    transform: rotate(1turn);
  }
}

@keyframes nodeFlow {
  0%,
  16%,
  100% {
    border-color: rgba(132, 173, 255, .21);
    box-shadow: 0 17px 36px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .025);
    transform: translateY(0);
  }
  3%,
  11% {
    border-color: rgba(31, 182, 255, .7);
    box-shadow: 0 19px 42px rgba(0, 0, 0, .36), 0 0 26px rgba(31, 182, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .07);
    transform: translateY(-3px);
  }
}

@keyframes nodeAccent {
  0%,
  16%,
  100% {
    width: 22px;
    filter: brightness(1);
  }
  3%,
  11% {
    width: 36px;
    filter: brightness(1.35);
  }
}

@keyframes nodeGlow {
  0%,
  16%,
  100% {
    opacity: 0;
  }
  3%,
  11% {
    opacity: 1;
  }
}

@keyframes signalTravel {
  0% {
    left: -4px;
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    left: calc(100% - 4px);
    opacity: 1;
  }
  13%,
  100% {
    left: calc(100% - 4px);
    opacity: 0;
  }
}

@keyframes signalTravelReverse {
  0% {
    right: -4px;
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    right: calc(100% - 4px);
    opacity: 1;
  }
  13%,
  100% {
    right: calc(100% - 4px);
    opacity: 0;
  }
}

@keyframes signalTravelVertical {
  0% {
    top: -4px;
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  10% {
    top: calc(100% - 4px);
    opacity: 1;
  }
  13%,
  100% {
    top: calc(100% - 4px);
    opacity: 0;
  }
}

@keyframes wordCycle {
  0%,
  5% {
    opacity: 0;
    transform: translateY(12px);
  }
  12%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

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

  .nav {
    grid-template-columns: 150px 1fr auto;
    gap: 24px;
  }

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

  .hero::after {
    display: none;
  }

  .hero h1 {
    max-width: 900px;
  }

  .system-panel {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

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

  .page-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

  .page-hero-aside {
    max-width: 540px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .footer-col:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .problem-grid,
  .expertise-grid,
  .stack-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-section,
  .content-split {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .system-copy,
  .content-label {
    position: static;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-card,
  .system-card:nth-child(4),
  .system-card:nth-child(5) {
    grid-column: auto;
  }

  .system-card:last-child {
    grid-column: 1 / -1;
  }

  .system-transverse {
    grid-template-columns: 152px 1fr;
  }

  .system-transverse p {
    grid-column: 2;
  }

  .client-proof-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 38px;
  }

  .client-proof p {
    max-width: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 76px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav {
    min-height: 78px;
  }

  .brand svg {
    height: 58px;
  }

  .hero {
    min-height: auto;
    padding-block: 64px 58px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 65px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .system-panel {
    min-height: auto;
  }

  .client-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .client-logos img {
    height: 36px;
    max-width: 132px;
    margin-inline: auto;
  }

  .client-logos .client-logo-cocon {
    height: 58px;
  }

  .client-logos img:last-child {
    grid-column: 1 / -1;
  }

  .system-card-grid {
    grid-template-columns: 1fr;
  }

  .system-card,
  .system-card:nth-child(4),
  .system-card:nth-child(5),
  .system-card:last-child {
    min-height: auto;
    grid-column: auto;
    padding: 26px 22px 54px;
  }

  .system-card h3 {
    margin-top: 34px;
    font-size: 22px;
  }

  .system-transverse {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 20px;
  }

  .system-transverse p {
    grid-column: auto;
  }

  .system-canvas {
    min-height: auto;
    padding: 24px 20px;
  }

  .service-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto 28px auto 28px auto 28px auto 28px auto 28px auto;
    grid-template-areas:
      "ads"
      "one"
      "conversion"
      "two"
      "tracking"
      "three"
      "crm"
      "four"
      "automation"
      "five"
      "revenue";
  }

  .system-node {
    min-height: 98px;
    padding: 18px 18px 17px;
  }

  .system-node::before {
    top: 17px;
    left: 18px;
  }

  .system-node strong {
    font-size: 17px;
  }

  .node-tools {
    max-width: 310px;
    font-size: 10px;
  }

  .flow-connector,
  .flow-connector.is-vertical {
    align-self: stretch;
    justify-self: center;
    width: 14px;
    height: 100%;
  }

  .flow-connector::before,
  .flow-connector.is-reverse::before,
  .flow-connector.is-vertical::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(rgba(102, 153, 255, .18), rgba(31, 182, 255, .4));
  }

  .flow-connector i,
  .flow-connector.is-reverse i,
  .flow-connector.is-vertical i {
    top: -4px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    animation-name: signalTravelVertical;
  }

  .section-heading h2,
  .closing h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .problem-grid,
  .offer-grid,
  .method-grid,
  .expertise-grid,
  .stack-grid,
  .info-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .offer-card,
  .method-card,
  .expertise-card,
  .stack-card,
  .info-card,
  .related-card {
    min-height: auto;
  }

  .system-row,
  .ordered-list li {
    grid-template-columns: 44px 1fr;
  }

  .system-row p,
  .ordered-list p {
    grid-column: 2;
  }

  .closing {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .newsletter-form {
    display: block;
  }

  .newsletter-form .formkit-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

  .newsletter-hero {
    min-height: calc(100svh - 78px);
  }

  .newsletter-hero-inner {
    padding-block: 56px 62px;
  }

  .newsletter-hero h1 {
    font-size: clamp(47px, 13vw, 64px);
  }

  .newsletter-hero-inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .newsletter-hero-form {
    margin-top: 30px;
  }

  .page-hero {
    padding-block: 68px 72px;
  }

  .page-hero h1 {
    font-size: clamp(46px, 13.5vw, 68px);
  }

  .page-hero-aside {
    padding-left: 18px;
  }

  .content-split + .content-split {
    margin-top: 68px;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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