:root {
  --bg: #070a12;
  --bg-2: #0a0f1f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(79, 140, 255, 0.45);
  --text: #ffffff;
  --muted: #aab4c8;
  --muted-2: #75819a;
  --blue: #4f8cff;
  --violet: #9b5cff;
  --cyan: #35e0ff;
  --green: #2bffb3;
  --amber: #f7c948;
  --danger-soft: #ff6f91;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-blue: 0 18px 60px rgba(79, 140, 255, 0.28);
  --max: 1180px;
  --header-h: 82px;
  --radius: 8px;
  --radius-sm: 6px;
  --space: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --fast: 180ms var(--ease);
  --medium: 420ms var(--ease);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(140deg, rgba(79, 140, 255, 0.13), transparent 28%),
    linear-gradient(215deg, rgba(155, 92, 255, 0.12), transparent 34%),
    radial-gradient(ellipse at 50% -10%, rgba(53, 224, 255, 0.13), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent, rgba(53, 224, 255, 0.07), transparent),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.018) 19px 20px);
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform var(--fast);
}

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

.section-wrap {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  align-items: center;
  background: rgba(7, 10, 18, 0);
  transition: background var(--medium), border-color var(--medium), backdrop-filter var(--medium);
}

.site-header.is-scrolled {
  background: rgba(7, 10, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(53, 224, 255, 0.22), rgba(155, 92, 255, 0.18)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(53, 224, 255, 0.16);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  margin-left: auto;
}

.nav-menu a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--fast);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  transition: transform var(--medium);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-menu a.is-active {
  color: var(--text);
}

.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--fast), opacity var(--fast);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, rgba(53, 224, 255, 0.45), rgba(155, 92, 255, 0.32), rgba(247, 201, 72, 0.18));
  transition: opacity var(--fast);
}

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

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: var(--shadow-blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 70px rgba(79, 140, 255, 0.38);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(32px, 4vw, 62px) 0 clamp(72px, 9vw, 112px);
}

.hero-backdrop {
  position: absolute;
  inset: -120px max(-8vw, -80px) 0;
  z-index: -1;
  overflow: hidden;
}

.grid-plane {
  position: absolute;
  inset: 14% -12% 8%;
  transform: perspective(900px) rotateX(63deg) translateY(70px);
  background-image:
    linear-gradient(rgba(79, 140, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 224, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.38;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 58%, transparent);
}

.beam {
  position: absolute;
  width: 54vw;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(53, 224, 255, 0.64), transparent);
  filter: drop-shadow(0 0 18px rgba(53, 224, 255, 0.48));
  opacity: 0.46;
  animation: beamShift 9s var(--ease) infinite alternate;
}

.beam-one {
  left: 0;
  top: 32%;
  transform: rotate(-18deg);
}

.beam-two {
  right: -8%;
  bottom: 26%;
  transform: rotate(16deg);
  animation-delay: -3s;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-bottom: 24px;
  max-width: 880px;
  font-size: clamp(2.9rem, 5.15vw, 5.6rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.hero-subtitle,
.section-heading p,
.advantage-copy > p,
.cta-panel > p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-subtitle {
  max-width: 670px;
  margin-bottom: 34px;
}

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

.hero-visual {
  position: relative;
  min-height: clamp(520px, 48vw, 680px);
}

.system-panel {
  position: absolute;
  inset: 8% 2% 7% 4%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(53, 224, 255, 0.12), transparent 45%),
    rgba(7, 10, 18, 0.58);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.system-panel::before,
.system-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-panel::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(53, 224, 255, 0.12) 50%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, rgba(155, 92, 255, 0.1) 50%, transparent 52%);
  background-size: 78px 78px;
  opacity: 0.42;
}

.system-panel::after {
  inset: auto 28px 28px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 224, 255, 0.72), rgba(247, 201, 72, 0.48), transparent);
}

.network-graphic {
  width: min(100%, 610px);
  filter: drop-shadow(0 30px 60px rgba(53, 224, 255, 0.14));
}

.svg-glass {
  fill: rgba(255, 255, 255, 0.025);
  stroke: rgba(255, 255, 255, 0.14);
}

.orbit {
  fill: none;
  stroke: url("#signalGradient");
  stroke-width: 1.3;
  stroke-dasharray: 10 18;
  opacity: 0.62;
  transform-origin: center;
  animation: orbitalSpin 18s linear infinite;
}

.orbit-b {
  animation-duration: 23s;
  animation-direction: reverse;
  opacity: 0.42;
}

.orbit-c {
  animation-duration: 29s;
  opacity: 0.5;
}

.signal-lines path,
.data-ticks path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
}

.signal-lines path {
  stroke: url("#signalGradient");
  stroke-dasharray: 270;
  stroke-dashoffset: 270;
  animation: drawSignal 3.6s var(--ease) infinite alternate;
}

.signal-lines path:nth-child(2) {
  animation-delay: 0.5s;
}

.signal-lines path:nth-child(3) {
  animation-delay: 0.85s;
}

.signal-lines path:nth-child(4) {
  animation-delay: 1.1s;
}

.core-node {
  fill: rgba(79, 140, 255, 0.18);
  stroke: url("#signalGradient");
  stroke-width: 2;
}

.inner-node {
  fill: url("#signalGradient");
  opacity: 0.92;
}

.outer-node {
  fill: var(--cyan);
}

.outer-node-alt {
  fill: var(--green);
}

.data-ticks path {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-linecap: round;
}

.orbit-shapes rect,
.orbit-shapes path {
  fill: rgba(255, 255, 255, 0.09);
  stroke: rgba(53, 224, 255, 0.48);
  stroke-width: 1.3;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(53, 224, 255, 0.13), transparent);
  transform: translateY(-100%);
  animation: scan 5.5s var(--ease) infinite;
}

.signal-card {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(9, 14, 30, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-size: clamp(0.78rem, 1.1vw, 0.93rem);
  font-weight: 800;
  white-space: nowrap;
  animation: floatCard 6s var(--ease) infinite alternate;
}

.signal-card::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(53, 224, 255, 0.72);
}

.card-one {
  top: 7%;
  left: 6%;
}

.card-two {
  top: 18%;
  right: -1%;
  animation-delay: -1s;
}

.card-three {
  left: -2%;
  bottom: 22%;
  animation-delay: -2.1s;
}

.card-four {
  right: 3%;
  bottom: 9%;
  animation-delay: -3.2s;
}

.card-five {
  left: 33%;
  bottom: 0;
  animation-delay: -4s;
}

.stats-strip {
  padding-bottom: var(--space);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card,
.service-card,
.process-step,
.result-card,
.expert-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.stat-card::before,
.service-card::before,
.process-step::before,
.result-card::before,
.expert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(53, 224, 255, 0.16), rgba(155, 92, 255, 0.11), rgba(247, 201, 72, 0.07));
  transition: opacity var(--medium);
}

.stat-card:hover::before,
.service-card:hover::before,
.process-step:hover::before,
.result-card:hover::before,
.expert-card:hover::before {
  opacity: 1;
}

.stat-card {
  min-height: 156px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span:last-child {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.services,
.advantage,
.process,
.case-data,
.experts,
.final-cta {
  padding-bottom: var(--space);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 278px;
  padding: 28px;
  transition: transform var(--medium), border-color var(--medium), box-shadow var(--medium);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(53, 224, 255, 0.48);
  box-shadow: 0 24px 74px rgba(35, 67, 135, 0.24);
}

.service-card p,
.process-step p,
.result-card span,
.expert-card p {
  color: var(--muted);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(53, 224, 255, 0.12), rgba(155, 92, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--cyan);
  opacity: 0.88;
}

.icon-strategy::before {
  transform: rotate(45deg);
}

.icon-strategy::after {
  inset: 20px;
  background: var(--green);
  border: 0;
}

.icon-growth::before {
  inset: 15px 13px 13px 13px;
  border-left: 0;
  border-bottom: 0;
  transform: skew(-12deg);
}

.icon-growth::after {
  inset: auto 14px 14px auto;
  width: 13px;
  height: 13px;
  border: 0;
  background: var(--amber);
}

.icon-automation::before {
  inset: 13px 8px;
  border-radius: 14px;
}

.icon-automation::after {
  inset: 21px 20px;
  border: 0;
  background: var(--cyan);
}

.icon-campaign::before {
  inset: 12px 18px 12px 11px;
}

.icon-campaign::after {
  inset: 18px 11px 18px 25px;
  border-color: var(--green);
}

.icon-brand::before {
  inset: 11px;
  border-radius: 50%;
}

.icon-brand::after {
  inset: 19px;
  border-color: var(--amber);
  transform: rotate(45deg);
}

.icon-funnel::before {
  inset: 12px 10px 26px;
}

.icon-funnel::after {
  inset: 27px 18px 12px;
  border-color: var(--green);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.advantage-copy {
  max-width: 650px;
}

.insight-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.insight-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.insight-list span {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(53, 224, 255, 0.5);
  background: linear-gradient(135deg, rgba(53, 224, 255, 0.2), rgba(43, 255, 179, 0.1));
}

.insight-list p {
  margin: 0;
  color: var(--muted);
}

.dashboard-graphic {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026)),
    rgba(6, 12, 26, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.34;
}

.dashboard-graphic > * {
  position: relative;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.dashboard-topline span,
.recommendation-stack small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dashboard-topline strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.9;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(43, 255, 179, 0.3);
  border-radius: var(--radius-sm);
  color: #caffed;
  background: rgba(43, 255, 179, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(43, 255, 179, 0.7);
}

.chart-area {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.line-chart {
  width: 100%;
  min-height: 190px;
}

.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.chart-fill {
  fill: url("#chartFill");
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.chart-line {
  fill: none;
  stroke: url("#signalGradient");
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  transition: stroke-dashoffset 1200ms var(--ease);
}

.chart-point {
  fill: var(--cyan);
  opacity: 0;
  transition: opacity 450ms var(--ease) 700ms;
}

.is-visible .chart-line {
  stroke-dashoffset: 0;
}

.is-visible .chart-fill,
.is-visible .chart-point {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
  margin-top: 14px;
}

.funnel-graphic {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.funnel-graphic span {
  width: var(--w);
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid rgba(53, 224, 255, 0.24);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.22), rgba(53, 224, 255, 0.1));
  color: #dcecff;
  font-size: 0.76rem;
  font-weight: 800;
  transform: scaleX(0.7);
  opacity: 0.48;
  transition: transform 780ms var(--ease), opacity 780ms var(--ease);
  transform-origin: center;
}

.is-visible .funnel-graphic span {
  transform: scaleX(1);
  opacity: 1;
}

.funnel-graphic span:nth-child(2) {
  transition-delay: 120ms;
}

.funnel-graphic span:nth-child(3) {
  transition-delay: 240ms;
}

.funnel-graphic span:nth-child(4) {
  transition-delay: 360ms;
}

.recommendation-stack {
  display: grid;
  gap: 14px;
}

.recommendation-stack article {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.recommendation-stack strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.automation-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.automation-flow span {
  flex: 1;
  min-width: 0;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.automation-flow i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 224, 255, 0.06), rgba(53, 224, 255, 0.58), rgba(155, 92, 255, 0.58), rgba(247, 201, 72, 0.1));
}

.process-step {
  min-height: 252px;
  padding: 28px;
  transition: transform var(--medium), border-color var(--medium);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 224, 255, 0.4);
}

.process-step > span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(53, 224, 255, 0.4);
  background: #10182d;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  min-height: 288px;
  padding: 22px;
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.result-top span {
  max-width: 150px;
  font-weight: 750;
}

.result-top strong {
  font-size: 2rem;
  line-height: 1;
}

.bar-chart {
  height: 158px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(to top, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 34px),
    rgba(255, 255, 255, 0.03);
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-height: 20px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  transform: scaleY(0.18);
  transform-origin: bottom;
  transition: transform 800ms var(--ease);
}

.is-visible .bar-chart span {
  transform: scaleY(1);
}

.mini-line {
  width: 100%;
  height: 158px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.mini-line path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 1;
}

.mini-line-path {
  stroke: var(--green) !important;
  stroke-width: 5 !important;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 950ms var(--ease);
}

.mini-line-path.down {
  stroke: var(--amber) !important;
}

.is-visible .mini-line-path {
  stroke-dashoffset: 0;
}

.ring-chart {
  --progress: calc(var(--value) * 1%);
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  margin: 2px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b1223 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 var(--progress), rgba(255, 255, 255, 0.1) var(--progress) 100%);
  transform: rotate(-12deg) scale(0.88);
  opacity: 0.58;
  transition: transform 800ms var(--ease), opacity 800ms var(--ease);
}

.ring-chart span {
  color: var(--text);
  font-size: 2.1rem;
  font-weight: 900;
  transform: rotate(12deg);
}

.ring-chart span::after {
  content: "%";
  color: var(--muted);
  font-size: 0.86rem;
  margin-left: 2px;
}

.is-visible .ring-chart {
  transform: rotate(-12deg) scale(1);
  opacity: 1;
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.speed-grid span {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.34), rgba(53, 224, 255, 0.12));
  opacity: 0.26;
  transform: scale(0.82);
  transition: transform 600ms var(--ease), opacity 600ms var(--ease);
}

.is-visible .speed-grid span {
  opacity: 1;
  transform: scale(1);
}

.is-visible .speed-grid span:nth-child(1) { transition-delay: 40ms; }
.is-visible .speed-grid span:nth-child(2) { transition-delay: 80ms; }
.is-visible .speed-grid span:nth-child(3) { transition-delay: 120ms; }
.is-visible .speed-grid span:nth-child(4) { transition-delay: 160ms; }
.is-visible .speed-grid span:nth-child(5) { transition-delay: 200ms; }
.is-visible .speed-grid span:nth-child(6) { transition-delay: 240ms; }
.is-visible .speed-grid span:nth-child(7) { transition-delay: 280ms; }
.is-visible .speed-grid span:nth-child(8) { transition-delay: 320ms; }
.is-visible .speed-grid span:nth-child(9) { transition-delay: 360ms; }

.expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.employee-hero {
  min-height: 44svh;
  display: grid;
  align-items: end;
  padding: clamp(78px, 10vw, 132px) 0 clamp(46px, 7vw, 84px);
  overflow: hidden;
}

.employee-hero .section-heading {
  margin-bottom: 0;
}

.employee-hero h1 {
  max-width: 780px;
}

.employee-hero-grid {
  position: absolute;
  inset: 24px max(-8vw, -80px) 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 24%, rgba(53, 224, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(155, 92, 255, 0.14), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.employees {
  padding-bottom: var(--space);
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.employee-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform var(--medium), border-color var(--medium), box-shadow var(--medium);
}

.employee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(53, 224, 255, 0.16), rgba(155, 92, 255, 0.11), rgba(247, 201, 72, 0.07));
  transition: opacity var(--medium);
}

.employee-card:hover,
.employee-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(53, 224, 255, 0.5);
  box-shadow: 0 26px 78px rgba(79, 140, 255, 0.22), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.employee-card:hover::before,
.employee-card:focus-within::before {
  opacity: 1;
}

.employee-image {
  position: relative;
  aspect-ratio: 1;
  margin: 18px 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.employee-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 10, 18, 0.22));
}

.employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-content {
  position: relative;
  min-height: 238px;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
}

.employee-content h2 {
  margin-bottom: 7px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.employee-role {
  margin: 0;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.employee-bio {
  margin: 0;
  color: var(--muted);
}

.employee-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform var(--fast), border-color var(--fast), color var(--fast);
}

.employee-social:hover,
.employee-social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(53, 224, 255, 0.55);
  color: var(--cyan);
}

.expert-card {
  min-height: 302px;
  padding: 28px;
}

.avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.05);
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
}

.avatar::before {
  inset: 18px;
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
}

.avatar::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 -16px 0 rgba(79, 140, 255, 0.55), 0 -32px 0 rgba(155, 92, 255, 0.4);
}

.avatar-two::before {
  border-radius: 50%;
  border-color: var(--green);
}

.avatar-three::before {
  border-color: var(--amber);
  transform: skew(-10deg);
}

.final-cta {
  width: min(1250px, calc(100% - 40px));
}

.cta-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  justify-items: start;
  align-content: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(79, 140, 255, 0.22), transparent 42%),
    linear-gradient(250deg, rgba(155, 92, 255, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #07101d;
  box-shadow: var(--shadow);
}

.cta-panel::before,
.cta-panel::after,
.cta-graphic {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-panel::before {
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--cyan), var(--blue), var(--violet), var(--amber)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.58;
}

.cta-panel::after {
  right: -8%;
  top: 10%;
  width: 48%;
  height: 74%;
  border: 1px solid rgba(53, 224, 255, 0.28);
  transform: skewX(-16deg);
  background:
    linear-gradient(90deg, rgba(53, 224, 255, 0.14), transparent),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 19px 20px);
}

.cta-graphic {
  right: 10%;
  top: 22%;
  width: min(310px, 34vw);
  aspect-ratio: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(-8deg) skew(-5deg);
  background:
    linear-gradient(135deg, rgba(53, 224, 255, 0.22), rgba(155, 92, 255, 0.08)),
    linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.12) 23% 24%, transparent 25% 48%, rgba(255, 255, 255, 0.12) 49% 50%, transparent 51%);
  opacity: 0.68;
}

.cta-panel > *:not(.cta-graphic) {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel p {
  max-width: 710px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 6, 13, 0.7);
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 36px;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 0.9fr;
  gap: 38px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 650;
  transition: color var(--fast);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

.site-footer p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.footer-muted {
  margin-top: 8px !important;
  color: var(--muted-2) !important;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text) !important;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 32px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes beamShift {
  from {
    opacity: 0.24;
    translate: -30px 0;
  }
  to {
    opacity: 0.7;
    translate: 30px 0;
  }
}

@keyframes orbitalSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drawSignal {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  25%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes floatCard {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -14px, 0);
  }
}

@media (max-width: 1080px) {
  .nav-cta {
    display: none;
  }

  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    min-height: 560px;
  }

  .stats-grid,
  .results-grid,
  .employee-grid,
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track::before {
    display: none;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
    --space: 78px;
  }

  .section-wrap,
  .nav-shell,
  .footer-grid,
  .footer-bottom,
  .final-cta {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-h) - 2px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 10, 18, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--fast), opacity var(--fast), visibility var(--fast);
  }

  .site-header .nav-menu.is-open {
    transition: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px;
    border-radius: var(--radius-sm);
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-menu a::after {
    display: none;
  }

  .brand {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.8rem);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .system-panel {
    inset: 12% 0 10%;
  }

  .signal-card {
    max-width: 210px;
    white-space: normal;
  }

  .card-two {
    right: 0;
  }

  .card-three {
    left: 0;
  }

  .card-five {
    left: 18%;
  }

  .stats-grid,
  .service-grid,
  .results-grid,
  .expert-grid,
  .employee-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .dashboard-topline,
  .automation-flow {
    flex-direction: column;
  }

  .automation-flow {
    align-items: stretch;
  }

  .automation-flow i {
    width: 1px;
    height: 18px;
    margin-inline: auto;
  }

  .cta-panel {
    min-height: 390px;
  }

  .cta-panel::after,
  .cta-graphic {
    opacity: 0.24;
  }
}

@media (max-width: 470px) {
  .hero-visual {
    min-height: 455px;
  }

  .signal-card {
    padding: 10px 11px;
    font-size: 0.75rem;
  }

  .card-one {
    left: 0;
    top: 4%;
  }

  .card-two {
    top: 14%;
  }

  .card-three {
    bottom: 18%;
  }

  .card-four {
    right: 0;
    bottom: 5%;
  }

  .card-five {
    display: none;
  }

  .stat-card,
  .service-card,
  .process-step,
  .result-card,
  .expert-card,
  .dashboard-graphic {
    padding: 22px;
  }
}

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

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