:root {
  --ink: #06131c;
  --ink-2: #0a1c28;
  --muted: #667684;
  --paper: #f6f8f8;
  --white: #ffffff;
  --line: rgba(6, 19, 28, 0.11);
  --cyan: #58d9ff;
  --mint: #7ff7d4;
  --green: #7ef65b;
  --orange: #f26b3f;
  --purple: #7954ff;
  --shadow: 0 24px 70px rgba(3, 16, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
.intro-band {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  padding: 0 12px 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(5, 19, 29, 0.72);
  color: var(--white);
  box-shadow: 0 18px 55px rgba(3, 11, 17, 0.28);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 184px;
  height: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.mark-shell {
  fill: rgba(255, 255, 255, 0.04);
  stroke: url(#markGlow);
  stroke-width: 2.4;
}

.footer-brand .mark-shell {
  stroke: #7ff7d4;
}

.mark-z,
.mark-orbit {
  fill: none;
  stroke: #effcff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-orbit {
  stroke: #7ff7d4;
  stroke-width: 2.2;
  stroke-dasharray: 4 5;
}

.mark-dot {
  fill: #f26b3f;
}

.mark-dot.second {
  fill: #7ff7d4;
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.nav-group > a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.nav-group:hover > a {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.nav-group {
  position: relative;
  padding: 18px 0;
}

.mega-menu {
  position: absolute;
  top: 56px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 8px;
  width: 520px;
  padding: 12px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(5, 19, 29, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(20px);
}

.mega-menu.services-menu {
  width: 590px;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  display: grid;
  gap: 4px;
  border-radius: 16px;
  padding: 13px;
  background: transparent;
}

.mega-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mega-menu strong {
  color: var(--white);
  font-size: 14px;
}

.mega-menu span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--mint), var(--green));
  color: #041015;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 19;
  display: none;
  width: min(420px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(5, 19, 29, 0.94);
  padding: 10px;
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  border-radius: 16px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-top: 170px;
  background:
    radial-gradient(circle at 72% 23%, rgba(88, 217, 255, 0.22), transparent 32%),
    radial-gradient(circle at 84% 64%, rgba(242, 107, 63, 0.13), transparent 30%),
    linear-gradient(140deg, #06131c 0%, #081923 48%, #0d2730 100%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0, transparent 68%);
}

.hero-scanline {
  position: absolute;
  top: 0;
  left: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(127, 247, 212, 0.6), transparent);
  animation: scan 7s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateX(0); opacity: 0.2; }
  50% { transform: translateX(72vw); opacity: 0.75; }
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-band .section-kicker,
.why-band .eyebrow,
.section-heading .eyebrow {
  color: #0e6f69;
}

.dark-section .section-heading .eyebrow {
  color: var(--mint);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.55vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lede {
  max-width: 650px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.proof-disclaimer {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px;
  line-height: 1.45;
}

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

.core-orb {
  position: absolute;
  top: 68px;
  right: 58px;
  width: min(400px, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(127, 247, 212, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 247, 212, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 34px 80px rgba(88, 217, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: float 6s ease-in-out infinite;
}

.core-orb::before,
.core-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.core-orb::before {
  inset: 28px;
  border: 1px dashed rgba(127, 247, 212, 0.34);
}

.core-orb::after {
  inset: 72px;
  border: 1px solid rgba(88, 217, 255, 0.24);
}

.hero-penguin-mark {
  position: relative;
  z-index: 2;
  width: 58%;
  min-width: 210px;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
}

.brand-constellation span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 9px rgba(127, 247, 212, 0.1);
}

.brand-constellation span:nth-child(1) {
  top: 18%;
  left: 25%;
}

.brand-constellation span:nth-child(2) {
  right: 18%;
  top: 34%;
  background: var(--orange);
}

.brand-constellation span:nth-child(3) {
  bottom: 20%;
  left: 32%;
  background: var(--cyan);
}

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

.floating-panel {
  position: absolute;
  width: 245px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.floating-panel strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.34;
}

.panel-kicker,
.card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-panel i {
  display: block;
  width: 72%;
  height: 6px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(255, 255, 255, 0.14));
}

.panel-a {
  top: 18px;
  left: 12px;
}

.panel-b {
  right: 0;
  bottom: 48px;
}

.robot-companion {
  position: absolute;
  left: 54px;
  bottom: 34px;
  width: 122px;
  height: 174px;
}

.robot-head {
  position: relative;
  width: 92px;
  height: 74px;
  margin: 0 auto;
  border: 2px solid rgba(127, 247, 212, 0.76);
  border-radius: 32px 32px 24px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(198, 245, 255, 0.78));
}

.robot-head::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  width: 2px;
  height: 22px;
  background: var(--mint);
}

.robot-head::after {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.robot-head span {
  position: absolute;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.robot-head span:first-child {
  left: 27px;
}

.robot-head span:last-child {
  right: 27px;
}

.robot-body {
  width: 70px;
  height: 76px;
  margin: 8px auto 0;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--purple), #4cc8ff);
}

.robot-pulse {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 110px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(127, 247, 212, 0.18);
}

.intro-band {
  padding: 78px 0;
  background: var(--white);
}

.trust-band {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef4f3;
}

.trust-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-marks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.trust-marks .partner-logo {
  min-width: 160px;
  justify-content: center;
  padding: 8px 14px 8px 8px;
}

.partner-logo img {
  display: inline-grid;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.partner-logo b {
  font-size: 14px;
  letter-spacing: 0;
}

.partner-logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.trust-band p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #75838e;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.why-band {
  padding: 92px 0;
  background: var(--paper);
}

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

.why-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(3, 16, 24, 0.07);
}

.why-grid p {
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 1fr;
  gap: 42px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 48px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.split-section p {
  max-width: 650px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 800;
}

.proof-note {
  max-width: 610px;
  margin: 8px 0 0;
  color: #465866;
  font-weight: 700;
}

.mini-proof {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(127, 247, 212, 0.12);
  color: var(--mint);
  font-size: 12px;
  line-height: 1.35;
}

.mini-proof.dark {
  color: var(--ink);
  background: rgba(6, 19, 28, 0.08);
}

.card-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--mint);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.card-cta.dark {
  color: var(--ink);
}

.text-link::after {
  content: "";
  width: 38px;
  height: 2px;
  margin-left: 12px;
  background: var(--orange);
}

.fusion-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.6)),
    radial-gradient(circle at 25% 25%, rgba(127, 247, 212, 0.35), transparent 30%);
  box-shadow: var(--shadow);
}

.fusion-stage {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  inset: 28px 28px auto;
}

.fusion-stage span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.device-illustration {
  position: absolute;
  right: 72px;
  bottom: 48px;
  width: 310px;
  height: 230px;
  border-radius: 34px;
  background: #091722;
  transform: skewY(-7deg);
  box-shadow: 30px 28px 0 rgba(6, 19, 28, 0.09);
}

.device-screen {
  position: absolute;
  inset: 28px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(127, 247, 212, 0.75) 0 30%, transparent 30% 38%, rgba(88, 217, 255, 0.72) 38% 60%, transparent 60% 68%, rgba(242, 107, 63, 0.72) 68% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px);
}

.sensor-node {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(127, 247, 212, 0.16);
}

.node-one {
  top: -20px;
  left: 44px;
  width: 36px;
  height: 36px;
}

.node-two {
  right: -18px;
  top: 78px;
  width: 28px;
  height: 28px;
}

.node-three {
  left: 136px;
  bottom: -16px;
  width: 30px;
  height: 30px;
}

.dark-section,
.dxp-section,
.site-footer {
  background: #06131c;
  color: var(--white);
}

.dark-section p,
.dxp-section p,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 247, 212, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.product-card.featured {
  background:
    linear-gradient(145deg, rgba(127, 247, 212, 0.14), rgba(255, 255, 255, 0.06)),
    #0a1c28;
}

.product-card.quiet {
  border-style: dashed;
}

.product-card p:not(.card-label) {
  margin-bottom: 0;
}

.product-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
}

.transport::before {
  inset: 22px 12px;
  border-radius: 8px;
  background: var(--mint);
}

.transport::after {
  left: 15px;
  right: 15px;
  bottom: 15px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 22%, transparent 22% 38%, var(--orange) 38% 60%, transparent 60% 75%, var(--orange) 75%);
}

.refurb::before {
  inset: 16px;
  border: 3px solid var(--cyan);
  border-radius: 10px;
}

.refurb::after {
  width: 28px;
  height: 18px;
  right: 8px;
  bottom: 13px;
  border-radius: 4px;
  background: var(--orange);
}

.voice::before {
  left: 20px;
  top: 13px;
  width: 34px;
  height: 48px;
  border-radius: 20px;
  background: var(--mint);
}

.voice::after {
  left: 14px;
  bottom: 11px;
  width: 46px;
  height: 18px;
  border: 3px solid var(--cyan);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.crm::before {
  inset: 16px 12px;
  border-radius: 11px;
  background: linear-gradient(180deg, var(--purple), var(--cyan));
}

.crm::after {
  left: 23px;
  top: 25px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 11px 0 #fff, 0 22px 0 #fff;
}

.payz::before {
  inset: 15px;
  border-radius: 50%;
  background: var(--green);
}

.payz::after {
  left: 27px;
  top: 19px;
  width: 20px;
  height: 36px;
  border-radius: 999px;
  border: 4px solid var(--ink);
  border-left: 0;
}

.lab::before {
  left: 18px;
  top: 17px;
  width: 38px;
  height: 38px;
  border: 3px dashed var(--mint);
  border-radius: 50%;
}

.lab::after {
  left: 34px;
  top: 8px;
  width: 6px;
  height: 58px;
  background: var(--orange);
  transform: rotate(45deg);
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-rail article,
.service-rail a {
  display: block;
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.service-rail article:last-child,
.service-rail a:last-child {
  border-right: 0;
}

.service-rail a:nth-child(3n) {
  border-right: 0;
}

.service-rail a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.services-link {
  margin-top: 22px;
}

.proof-band {
  padding: 0 0 112px;
  background: var(--paper);
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 34px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  background: #06131c;
  color: var(--white);
  box-shadow: var(--shadow);
}

.proof-panel h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
}

.proof-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-panel-grid article {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-panel-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--mint);
}

.proof-panel-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-panel-grid .quote-slot {
  background: linear-gradient(145deg, rgba(128, 97, 255, 0.22), rgba(88, 217, 255, 0.1));
}

.service-rail a > span:first-child:not(.card-cta) {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.dxp-section {
  padding: 112px 0;
  overflow: hidden;
}

.dxp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 62px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.badge-row span,
.badge-row a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.dxp-board {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #091b27;
  background-size: 72px 72px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.timeline-row {
  display: grid;
  grid-template-columns: 150px repeat(4, 1fr);
  gap: 10px;
  align-items: center;
}

.timeline-row b {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.timeline-row i {
  display: block;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 247, 212, 0.34), rgba(88, 217, 255, 0.16));
}

.contact-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(127, 247, 212, 0.18), transparent 28%),
    var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: 50px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: #f8faf9;
  color: var(--ink);
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(88, 217, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(88, 217, 255, 0.13);
}

.site-footer {
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 44px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin-bottom: 6px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout,
  .intro-grid,
  .split-section,
  .dxp-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .core-orb {
    left: 50%;
    right: auto;
    animation: none;
    transform: translateX(-50%);
  }

  .product-grid,
  .service-rail,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-rail a:nth-child(2),
  .service-rail a:nth-child(4),
  .service-rail a:nth-child(6) {
    border-right: 0;
  }

  .service-rail a:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .service-rail article,
  .service-rail a {
    border-bottom: 1px solid var(--line);
  }

  .service-rail a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-panel,
  .proof-panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-pad,
  .dxp-section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding-left: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 148px;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede,
  .split-section p {
    font-size: 17px;
  }

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

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

  .floating-panel {
    width: 218px;
  }

  .panel-a {
    left: 0;
  }

  .panel-b {
    right: 0;
    bottom: 28px;
  }

  .robot-companion {
    left: 10px;
    transform: scale(0.84);
    transform-origin: bottom left;
  }

  .fusion-card {
    min-height: 440px;
  }

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

  .device-illustration {
    right: 34px;
    bottom: 34px;
    width: 232px;
    height: 176px;
  }

  .product-grid,
  .service-rail,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-rail article,
  .service-rail a,
  .service-rail article:nth-child(2),
  .service-rail a:nth-child(2),
  .service-rail article:nth-last-child(-n + 2),
  .service-rail a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-rail article:last-child,
  .service-rail a:last-child {
    border-bottom: 0;
  }

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

  .timeline-row i {
    height: 22px;
  }

  .contact-card {
    padding: 26px;
  }
}
