:root {
  --ink: #10202a;
  --muted: #5c6b73;
  --line: #dce5e8;
  --soft: #f4f7f8;
  --panel: #ffffff;
  --blue: #0a6ea8;
  --cyan: #12a8c8;
  --green: #49a078;
  --navy: #123044;
  --dark: #0c1c26;
  --shadow: 0 24px 80px rgba(16, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.5;
  overflow-x: hidden;
}

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

section,
header,
main,
footer {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 252, 253, 0.92);
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 168px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #324750;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 2px;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}

.language-toggle {
  min-height: 40px;
  min-width: 48px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.language-toggle:hover {
  color: #fff;
  background: var(--blue);
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  position: relative;
  padding: clamp(66px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.hero.section {
  padding-top: clamp(34px, 4.2vw, 58px);
  padding-bottom: clamp(52px, 6.8vw, 92px);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section:not(.hero):not(.intro-band):not(.workforce-section):not(.contact-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, rgba(18, 168, 200, 0.08) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 34%, rgba(73, 160, 120, 0.07) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 76%, rgba(10, 110, 168, 0.07) 0 3px, transparent 4px),
    linear-gradient(28deg, transparent 36%, rgba(10, 110, 168, 0.045) 36.2%, transparent 36.5%),
    linear-gradient(145deg, transparent 58%, rgba(18, 168, 200, 0.045) 58.2%, transparent 58.5%);
  opacity: 0.7;
  animation: neural-pan 22s ease-in-out infinite alternate;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(600px, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(26px, 3.2vw, 50px);
  background:
    linear-gradient(115deg, rgba(244, 247, 248, 0.98), rgba(235, 244, 246, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(10, 110, 168, 0.07) 75px 76px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 16%, rgba(10, 110, 168, 0.08) 16.2%, transparent 16.5%),
    linear-gradient(42deg, transparent 52%, rgba(73, 160, 120, 0.08) 52.2%, transparent 52.6%),
    linear-gradient(158deg, transparent 64%, rgba(18, 168, 200, 0.07) 64.2%, transparent 64.5%);
  opacity: 0.58;
  animation: neural-pan 18s ease-in-out infinite alternate;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.neural-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.neural-bg span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(18, 168, 200, 0.18);
  box-shadow: 0 0 24px rgba(18, 168, 200, 0.22);
  animation: neural-pulse 7s ease-in-out infinite;
}

.neural-bg span:nth-child(1) { top: 18%; left: 11%; }
.neural-bg span:nth-child(2) { top: 31%; left: 38%; animation-delay: 1.1s; }
.neural-bg span:nth-child(3) { top: 72%; left: 24%; animation-delay: 2.2s; }
.neural-bg span:nth-child(4) { top: 20%; right: 20%; animation-delay: 3.3s; }
.neural-bg span:nth-child(5) { top: 62%; right: 9%; animation-delay: 4.4s; }
.neural-bg span:nth-child(6) { bottom: 13%; right: 39%; animation-delay: 5.5s; }

@keyframes neural-pulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.35);
  }
}

@keyframes neural-pan {
  from {
    transform: translate3d(-12px, -8px, 0);
  }

  to {
    transform: translate3d(12px, 10px, 0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 4.65vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-workspace-word {
  display: block;
  color: #29245f;
  font-size: 0.88em;
  text-shadow: 0 0 20px rgba(43, 37, 96, 0.18);
}

.hero-subtitle {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.35rem, 1.85vw, 1.82rem);
  font-weight: 800;
  white-space: nowrap;
}

.hero-text {
  max-width: 760px;
  color: #314751;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 229, 232, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (min-width: 1161px) {
  .hero-copy {
    min-width: 0;
  }

  .hero-panel {
    width: min(100%, 560px);
    justify-self: center;
  }
}

.setup-animation {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, rgba(18, 168, 200, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 168, 200, 0.14) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.setup-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.setup-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 16 18;
  animation: setup-flow 2.8s linear infinite;
  opacity: 0.82;
}

.setup-line.delay {
  animation-delay: 1.2s;
}

.line-blue { stroke: #0a6ea8; }
.line-green { stroke: #49a078; }
.line-yellow { stroke: #f2c500; }
.line-red { stroke: #e3392c; }
.line-purple { stroke: #2b286c; }

@keyframes setup-flow {
  to {
    stroke-dashoffset: -68;
  }
}

.setup-core,
.setup-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 32, 42, 0.1);
}

.setup-core {
  top: 50%;
  left: 50%;
  width: 168px;
  height: 168px;
  padding: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.setup-core img {
  width: 62px;
}

.setup-core span {
  font-weight: 800;
}

.setup-core strong {
  color: var(--blue);
}

.setup-node {
  z-index: 4;
  width: 116px;
  min-height: 74px;
  padding: 10px;
  border-radius: 8px;
  color: #243943;
  font-weight: 800;
  gap: 6px;
  animation: node-float 5s ease-in-out infinite;
}

.setup-node svg {
  width: 23px;
  height: 23px;
  fill: var(--blue);
}

.setup-node span {
  display: block;
  font-size: 0.82rem;
}

.setup-plant { top: 38px; left: 36px; }
.setup-assets { top: 52px; right: 38px; animation-delay: 0.6s; }
.setup-operators { bottom: 54px; left: 44px; animation-delay: 1.2s; }
.setup-reports { right: 46px; bottom: 52px; animation-delay: 1.8s; }
.setup-ai {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(73, 160, 120, 0.45);
  animation-delay: 2.4s;
}
.setup-ai svg { fill: var(--green); }

.setup-orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  border: 18px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-rotate 14s linear infinite;
}

.orbit-a {
  width: 252px;
  height: 252px;
  border-left-color: #0a6ea8;
  border-bottom-color: #159447;
  border-right-color: #e3392c;
}

.orbit-b {
  width: 308px;
  height: 308px;
  border-top-color: rgba(242, 197, 0, 0.9);
  border-right-color: rgba(18, 168, 200, 0.85);
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes orbit-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes node-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(220, 229, 232, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-metrics div {
  flex: 1 1 0;
  min-width: 110px;
  padding: 9px 12px;
  border: 1px solid rgba(10, 110, 168, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics span,
.service-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-metrics strong {
  display: block;
  margin-top: 1px;
  font-size: 1.05rem;
}

.intro-band {
  background: var(--dark);
  color: #fff;
}

.workspace-content {
  display: grid;
  grid-template-columns: minmax(780px, 1fr) minmax(360px, 0.5fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: center;
}

.workspace-main .section-heading {
  grid-template-columns: minmax(160px, 0.25fr) minmax(0, 1.75fr);
}

.workspace-visual {
  display: grid;
  place-items: center;
  isolation: isolate;
  border-radius: 8px;
}

.workspace-visual video {
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: none;
  mix-blend-mode: screen;
  opacity: 0.96;
  border-radius: 10px;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.26));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1.36fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.compact,
.section-heading.light {
  display: block;
  max-width: 1040px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.25vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

#workspace-title,
#lifecycle-title,
#services-title {
  font-size: clamp(1.85rem, 2.65vw, 2.6rem);
  max-width: 1200px;
}

#lifecycle-title,
#suite-title,
#services-title,
#contact-title {
  color: #29245f;
}

#workspace-title {
  font-size: clamp(1.8rem, 2.35vw, 2.35rem);
  max-width: none;
}

.pulse-word {
  animation: pulse-word 9.6s ease-in-out infinite;
}

.pulse-word:nth-of-type(2) {
  animation-delay: 2.4s;
}

.pulse-word:nth-of-type(3) {
  animation-delay: 4.8s;
}

.pulse-word:nth-of-type(4) {
  animation-delay: 7.2s;
}

.text-pulse {
  font-weight: 800;
}

.intro-grid .text-pulse:nth-of-type(1) {
  animation-delay: 0.8s;
}

.intro-grid .text-pulse:nth-of-type(2) {
  animation-delay: 3.2s;
}

.intro-grid p:nth-child(2) .text-pulse:nth-of-type(1) {
  animation-delay: 5.6s;
}

.intro-grid p:nth-child(2) .text-pulse:nth-of-type(2) {
  animation-delay: 8s;
}

@keyframes pulse-word {
  0%,
  28%,
  100% {
    color: inherit;
    text-shadow: none;
  }

  8%,
  18% {
    color: #62d8ec;
    text-shadow: 0 0 20px rgba(98, 216, 236, 0.45);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1060px;
  color: #d9e5e8;
  font-size: 1.05rem;
}

.capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 34px;
}

.capability-row > span {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 98px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(98, 216, 236, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  box-shadow: 0 0 0 rgba(98, 216, 236, 0);
  animation: capability-glow 9.6s ease-in-out infinite;
}

.capability-row > span:nth-child(2) {
  animation-delay: 1.4s;
}

.capability-row > span:nth-child(3) {
  animation-delay: 2.8s;
}

.capability-row > span:nth-child(4) {
  animation-delay: 4.2s;
}

.capability-row > span:nth-child(5) {
  animation-delay: 5.6s;
}

.capability-row > span:nth-child(6) {
  animation-delay: 7s;
}

.capability-label {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.capability-row svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  fill: #62d8ec;
  background: rgba(98, 216, 236, 0.1);
  border: 1px solid rgba(98, 216, 236, 0.42);
}

.capability-row > span:last-child {
  min-width: 148px;
}

@keyframes capability-glow {
  0%,
  30%,
  100% {
    border-color: rgba(98, 216, 236, 0.28);
    box-shadow: 0 0 0 rgba(98, 216, 236, 0);
  }

  10%,
  20% {
    border-color: rgba(98, 216, 236, 0.88);
    box-shadow: 0 0 22px rgba(98, 216, 236, 0.28);
  }
}

@keyframes lifecycle-glow {
  0%,
  30%,
  100% {
    border-color: var(--line);
    box-shadow: none;
  }

  10%,
  20% {
    border-color: rgba(98, 216, 236, 0.88);
    box-shadow:
      0 0 0 2px rgba(98, 216, 236, 0.34),
      0 0 30px rgba(98, 216, 236, 0.34);
  }
}

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

.life-step,
.suite-card,
.operator-card,
.service-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.life-step {
  min-height: 236px;
  padding: 0;
  animation: lifecycle-glow 9.6s ease-in-out infinite;
  perspective: 1000px;
  cursor: pointer;
}

.life-step:nth-child(2) {
  animation-delay: 2.4s;
}

.life-step:nth-child(3) {
  animation-delay: 4.8s;
}

.life-step:nth-child(4) {
  animation-delay: 7.2s;
}

.life-card-inner {
  position: relative;
  width: 100%;
  min-height: 236px;
  transition: transform 560ms ease;
  transform-style: preserve-3d;
}

.life-step:hover .life-card-inner,
.life-step:focus .life-card-inner,
.life-step:focus-within .life-card-inner {
  transform: rotateY(180deg);
}

.life-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 18px 20px;
  backface-visibility: hidden;
}

.life-card-front img {
  width: 50px;
  margin-bottom: 16px;
}

.life-step span {
  color: var(--cyan);
  font-weight: 800;
}

.life-card-back {
  place-items: center;
  align-content: center;
  background: radial-gradient(circle, rgba(98, 216, 236, 0.14), rgba(255, 255, 255, 0));
  transform: rotateY(180deg);
}

.life-card-back img {
  width: min(46%, 132px);
}

.life-step h3,
.suite-card h3,
.operator-card h3 {
  margin: 6px 0 8px;
  font-size: 1.16rem;
}

.life-step p {
  font-size: 0.94rem;
  line-height: 1.38;
}

.life-step p,
.suite-card p,
.operator-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.suite-section {
  background: var(--soft);
}

.suite-section .section-heading {
  display: block;
  max-width: none;
}

.suite-layout {
  display: grid;
  grid-template-columns: minmax(0, 940px) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  max-width: none;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 940px;
}

.suite-workspace-visual {
  display: grid;
  justify-items: center;
  padding: 18px;
  border: 1px solid rgba(98, 216, 236, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  animation: lifecycle-glow 9.6s ease-in-out infinite;
}

.suite-workspace-visual img {
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 48px rgba(16, 32, 42, 0.12));
}

.suite-card {
  min-height: 108px;
  padding: 16px 18px;
  color: inherit;
}

.suite-card:focus-visible {
  outline: 3px solid rgba(98, 216, 236, 0.72);
  outline-offset: 3px;
}

.suite-card.has-app-icon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.app-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(16, 32, 42, 0.12);
}

.suite-card h3 {
  color: var(--blue);
}

.suite-card p {
  font-size: 0.94rem;
  line-height: 1.42;
}

#suite-title {
  max-width: none;
  font-size: clamp(1.9rem, 2.45vw, 2.45rem);
  white-space: nowrap;
}

.workforce-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 28, 38, 0.96), rgba(18, 48, 68, 0.94)),
    linear-gradient(90deg, rgba(18, 168, 200, 0.18) 1px, transparent 1px);
  background-size: auto, 54px 54px;
}

.section-heading.light .eyebrow {
  color: #62d8ec;
}

.workforce-section .section-heading.light {
  max-width: none;
}

.workforce-section h2 {
  max-width: 1320px;
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
}

.workforce-video-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 14px;
  border: 1px solid rgba(98, 216, 236, 0.36);
  border-radius: 6px;
  color: #eaf8fb;
  background: rgba(98, 216, 236, 0.09);
  font-weight: 850;
}

.workforce-video-link:hover {
  border-color: rgba(98, 216, 236, 0.82);
  box-shadow: 0 0 22px rgba(98, 216, 236, 0.2);
}

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

.operator-card {
  min-height: 260px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.operator-card.featured {
  background: linear-gradient(145deg, rgba(18, 168, 200, 0.26), rgba(73, 160, 120, 0.22));
}

.operator-card p {
  color: #d4e4e8;
}

.operator-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.operator-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--dark);
  background: #92e4ee;
  font-weight: 900;
}

.operator-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(146, 228, 238, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-item {
  min-height: 178px;
  padding: 0;
  perspective: 1000px;
  cursor: pointer;
  overflow: hidden;
  animation: lifecycle-glow 9.6s ease-in-out infinite;
}

.service-item:nth-child(2) {
  animation-delay: 1.6s;
}

.service-item:nth-child(3) {
  animation-delay: 3.2s;
}

.service-item:nth-child(4) {
  animation-delay: 4.8s;
}

.service-item:nth-child(5) {
  animation-delay: 6.4s;
}

.service-item:nth-child(6) {
  animation-delay: 8s;
}

.service-card-inner {
  position: relative;
  width: 100%;
  min-height: 178px;
  transition: transform 560ms ease;
  transform-style: preserve-3d;
}

.service-item:hover .service-card-inner,
.service-item:focus .service-card-inner,
.service-item:focus-within .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 18px;
  backface-visibility: hidden;
}

.service-card-back {
  place-items: center;
  background: radial-gradient(circle, rgba(98, 216, 236, 0.12), rgba(255, 255, 255, 0));
  transform: rotateY(180deg);
}

.service-card-back img {
  width: min(62%, 96px);
  max-height: 108px;
  object-fit: contain;
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.18;
}

.service-item span {
  line-height: 1.38;
}

.references-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--soft);
}

#references-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.reference-action-word {
  color: #29245f;
  font-size: 0.9em;
  text-shadow: 0 0 20px rgba(43, 37, 96, 0.16);
}

.references-subtitle {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.partner-strip {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.partner-strip::before,
.partner-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(14vw, 140px);
  pointer-events: none;
}

.partner-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), rgba(244, 247, 248, 0));
}

.partner-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), rgba(244, 247, 248, 0));
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-width: 200%;
  animation: partner-scroll 34s linear infinite;
  will-change: transform;
}

.partner-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(32px, 5vw, 72px);
  padding-right: clamp(32px, 5vw, 72px);
}

.partner-set img {
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .setup-line,
  .setup-orbit,
  .setup-node,
  .hero::before,
  .section:not(.hero):not(.intro-band):not(.workforce-section):not(.contact-section)::before,
  .neural-bg span {
    animation: none;
  }
}

/* Deprecated reference-board styles kept unused for older markup fallback. */
.reference-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.reference-board div {
  min-height: 156px;
  padding: 20px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 32, 42, 0.08);
}

.reference-board span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: 900;
}

.reference-board strong {
  font-size: 1.2rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section .eyebrow {
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
}

#contact-title {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.title-glow {
  color: #29245f;
  text-shadow: 0 0 20px rgba(43, 37, 96, 0.26);
  animation: title-glow 9.6s ease-in-out infinite;
}

@keyframes title-glow {
  0%,
  30%,
  100% {
    color: #29245f;
    text-shadow: none;
  }

  10%,
  20% {
    color: #29245f;
    text-shadow:
      0 0 0 rgba(43, 37, 96, 0),
      0 0 20px rgba(43, 37, 96, 0.34),
      0 0 30px rgba(18, 168, 200, 0.22);
  }
}

.contact-section > div > p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.42;
}

.contact-info-boxes {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 560px;
}

.contact-info-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 32, 42, 0.06);
}

.contact-info-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.contact-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #314751;
  font-weight: 800;
}

.contact-info-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: var(--blue);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 32, 42, 0.1);
}

label {
  display: grid;
  gap: 7px;
  color: #344a54;
  font-weight: 700;
}

.hidden-field {
  display: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fdfefe;
}

textarea {
  resize: vertical;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: #d7e3e8;
  background: var(--dark);
}

.footer-brand-block {
  display: grid;
  gap: 18px;
}

.site-footer > .footer-brand-block > img {
  width: 172px;
}

.site-footer p {
  margin: 0;
}

.download-app {
  display: grid;
  gap: 9px;
}

.download-app span {
  color: #eaf3f6;
  font-size: 0.9rem;
  font-weight: 800;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badges a {
  display: inline-flex;
}

.store-badges img {
  height: 38px;
  width: auto;
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.company-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #eaf3f6;
  font-size: 0.92rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: #62d8ec;
  background: rgba(98, 216, 236, 0.14);
  transform: translateY(-1px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: #eaf3f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #eaf3f6;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #62d8ec;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(220, 229, 232, 0.92);
  border-radius: 8px;
  color: #dce8ec;
  background: rgba(12, 28, 38, 0.96);
  box-shadow: 0 24px 80px rgba(16, 32, 42, 0.26);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy span {
  display: block;
  margin-bottom: 5px;
  color: #62d8ec;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-copy p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.cookie-copy a {
  display: inline-flex;
  margin-right: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-button.primary {
  color: #fff;
  background: var(--blue);
}

.cookie-button.ghost {
  color: #e8f2f5;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    grid-column: 4;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .language-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .hero,
  .workspace-content,
  .suite-layout,
  .references-section,
  .contact-section {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .workspace-visual {
    order: -1;
    max-width: 420px;
    justify-self: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

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

}

@media (max-width: 720px) {
  .section {
    padding: 50px 18px;
    max-width: 100%;
  }

  .site-header {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    order: 1;
    min-width: 0;
    margin-right: auto;
  }

  .brand img {
    width: min(128px, 38vw);
  }

  .site-nav {
    top: 63px;
    left: 12px;
    right: 12px;
  }

  .language-toggle {
    order: 2;
    flex: 0 0 44px;
    min-height: 38px;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 30px;
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    line-height: 1;
  }

  .hero-subtitle {
    white-space: normal;
    font-size: clamp(1.12rem, 5vw, 1.5rem);
  }

  .hero-text,
  .intro-grid,
  .contact-section p,
  .reference-copy p:last-child {
    font-size: 0.98rem;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.52rem, 7vw, 2.12rem);
    line-height: 1.12;
  }

  #suite-title {
    font-size: clamp(1.52rem, 7vw, 2.12rem);
    white-space: normal;
  }

  .workforce-section h2 {
    font-size: clamp(1.52rem, 7vw, 2.12rem);
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .workspace-content,
  .suite-layout,
  .contact-section,
  .operator-grid,
  .services-grid,
  .lifecycle {
    min-width: 0;
  }

  .setup-animation {
    min-height: auto;
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .setup-lines,
  .setup-orbit {
    display: none;
  }

  .setup-core,
  .setup-node {
    position: static;
    transform: none;
    width: 100%;
    min-height: auto;
    animation: none;
  }

  .setup-core {
    height: auto;
    min-height: 136px;
    border-radius: 8px;
  }

  .setup-core img {
    width: 56px;
  }

  .setup-node {
    font-size: 0.78rem;
    justify-content: start;
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .setup-node svg {
    width: 22px;
    height: 22px;
  }

  .hero-metrics,
  .intro-grid,
  .lifecycle,
  .suite-grid,
  .operator-grid,
  .services-grid,
  .reference-board {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .workspace-main .section-heading {
    display: block;
  }

  .suite-card,
  .operator-card,
  .service-item,
  .reference-board div {
    padding: 18px;
  }

  .life-card-front img {
    width: 54px;
    margin-bottom: 16px;
  }

  .life-card-back img {
    width: min(44%, 116px);
  }

  .operator-card {
    min-height: auto;
  }

  .operator-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .suite-workspace-visual {
    order: -1;
    max-width: 420px;
    justify-self: center;
  }

  .site-footer {
    display: grid;
  }

  .footer-brand-block {
    gap: 14px;
  }

  .footer-content {
    justify-items: start;
  }

  .company-social {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
    gap: 14px;
  }

  .cookie-actions,
  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding: 9px 12px;
  }

  .brand img {
    width: min(112px, 34vw);
  }

  .language-toggle {
    flex-basis: 40px;
    width: 40px;
    min-width: 40px;
    min-height: 36px;
    font-size: 0.82rem;
  }

  .nav-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .hero-panel {
    padding: 12px;
  }

  .hero-metrics div {
    padding: 12px;
  }

  .suite-card.has-app-icon {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .app-icon {
    width: 38px;
    height: 38px;
  }

  .footer-links,
  .capability-row {
    gap: 8px;
  }

  .capability-row > span {
    width: 100%;
  }
}
