:root {
  --ink: #16112f;
  --plum: #261044;
  --plum-soft: #4a2379;
  --violet: #6d28d9;
  --violet-2: #7c3aed;
  --lavender: #eee7ff;
  --lavender-2: #f6f2ff;
  --paper: #fffdf9;
  --white: #ffffff;
  --warm: #f8f5f0;
  --muted: #645d78;
  --line: rgba(38, 16, 68, .13);
  --shadow: 0 24px 60px rgba(62, 34, 101, .14);
  --shadow-strong: 0 34px 90px rgba(49, 25, 85, .22);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 5% 3%, rgba(124, 58, 237, .12), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(238, 231, 255, .88), transparent 28rem),
    linear-gradient(180deg, #fffefd 0%, #fbf9f6 52%, #fff 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(109, 40, 217, .45);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  width: auto;
  height: auto;
  clip: auto;
  left: 18px;
  top: 16px;
  z-index: 300;
  padding: 11px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--plum);
}

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

h1,
h2,
h3 {
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

em {
  color: var(--violet);
  font-style: italic;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--violet);
  font-family: "DM Mono", monospace;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead {
  max-width: 49ch;
  color: #332b4f;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
}

.construction-marquee {
  position: relative;
  z-index: 120;
  overflow: hidden;
  color: #fff;
  background: var(--plum);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.construction-marquee__track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 8px 0;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: constructionMarquee 24s linear infinite;
}

.construction-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.construction-marquee__track span::after {
  content: "•";
  opacity: .64;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(38, 16, 68, .08);
  background: rgba(255, 253, 249, .82);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
  color: var(--ink);
  line-height: 1;
}

.brand strong {
  color: #1b1434;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
  letter-spacing: 0;
}

.brand small {
  color: #1b1434;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.35vw, 36px);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #17102f;
  font-size: .92rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transition: color .2s ease, text-decoration-color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--violet);
  text-decoration-color: currentColor;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta {
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7f48f2);
  box-shadow: 0 16px 38px rgba(109, 40, 217, .29);
}

.nav-cta::after {
  content: "\2197";
  display: inline-block;
  margin-left: 10px;
  font-size: .82em;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #4a168f, #251044);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(109, 40, 217, .36);
}

.nav-links .nav-cta:hover::after,
.nav-links .nav-cta:focus-visible::after {
  color: #fff;
  transform: translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(38, 16, 68, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

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

.btn {
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7f48f2);
  box-shadow: 0 16px 38px rgba(109, 40, 217, .24);
}

.btn-secondary {
  color: #231742;
  border-color: rgba(38, 16, 68, .16);
  background: rgba(255, 255, 255, .76);
}

.btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .09);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, .16);
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  color: var(--violet);
  font-weight: 900;
  transition: transform .2s ease, color .2s ease;
}

/* ---------- Shared section scaffolding ---------- */

.svc-hero__grid,
.svc-layers,
.svc-process,
.svc-industries__inner,
.svc-connect,
.svc-transform,
.svc-metrics,
.svc-cta__inner {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.svc-intro {
  display: grid;
  gap: 4px;
  margin-bottom: clamp(38px, 4vw, 54px);
}

.svc-intro--center {
  justify-items: center;
  text-align: center;
}

.svc-intro h2 {
  font-size: clamp(2.35rem, 4vw, 3.9rem);
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 6vw, 84px) 0 clamp(30px, 4vw, 52px);
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0 46% 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 1), rgba(255, 253, 249, .9) 63%, rgba(255, 253, 249, 0)),
    radial-gradient(circle at 22% 20%, rgba(124, 58, 237, .12), transparent 22rem);
}

.svc-hero__grid {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
}

.svc-hero__copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.svc-hero__copy .eyebrow {
  margin-bottom: 0;
}

.svc-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 4.6vw, 4.55rem);
  line-height: 1.02;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* Hero OS panel */

.svc-os {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(139, 92, 246, .5), transparent 18rem),
    linear-gradient(155deg, #1d0f38, #120a26 68%, #17102f);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.svc-os::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: url("/assets/rebrand/pixel-field.svg") right -12% bottom -22% / 52% no-repeat;
  opacity: .32;
}

.svc-os__chrome {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 172px;
  gap: 12px;
}

.svc-os__side {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

.svc-os__side strong {
  margin: 2px 6px 12px;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.svc-os__side span {
  padding: 7px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, .56);
  font-size: .72rem;
  font-weight: 700;
}

.svc-os__side span.is-active {
  color: #fff;
  background: rgba(139, 92, 246, .3);
}

.svc-os__flow {
  position: relative;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 8px 2px;
}

.svc-os__flow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 26px;
  bottom: 26px;
  border-left: 2px dotted rgba(167, 139, 250, .38);
}

.svc-os__event {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  animation: osPulse 7.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.2s);
}

.svc-os__event i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, .22);
  font-style: normal;
  font-weight: 900;
  font-size: .72rem;
}

.svc-os__event b {
  display: block;
  color: #fff;
  font-size: .76rem;
  line-height: 1.25;
}

.svc-os__event small {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: .64rem;
  line-height: 1.3;
}

@keyframes osPulse {
  0%, 15%, 100% {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .05);
    box-shadow: none;
  }
  6% {
    border-color: rgba(167, 139, 250, .62);
    background: rgba(139, 92, 246, .16);
    box-shadow: 0 0 26px rgba(139, 92, 246, .28);
  }
}

.svc-os__stats {
  display: grid;
  align-content: start;
  gap: 10px;
}

.svc-os__stat {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.svc-os__stat span {
  display: block;
  color: #c4b5fd;
  font-family: "DM Mono", monospace;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.svc-os__stat strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.svc-os__stat svg {
  width: 100%;
  height: 34px;
  margin-top: 8px;
  color: #a78bfa;
}

.svc-os__stat small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .64rem;
  font-weight: 700;
}

.svc-os__stat--donut {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 14px;
  text-align: center;
}

.svc-os__stat--donut i {
  position: relative;
  width: 76px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(#8b5cf6 0 92%, rgba(255, 255, 255, .12) 92% 100%);
  font-style: normal;
}

.svc-os__stat--donut i::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: #191031;
}

.svc-os__stat--donut b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}

/* ---------- Layers ---------- */

.svc-layers {
  padding: clamp(64px, 7.5vw, 104px) 0 0;
}

.svc-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.svc-layer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 253, 249, .8));
  box-shadow: 0 18px 46px rgba(62, 34, 101, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.svc-layer:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 40, 217, .3);
  box-shadow: 0 28px 64px rgba(109, 40, 217, .16);
}

.svc-layer__num {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(38, 16, 68, .14);
  font-family: "DM Mono", monospace;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.svc-layer > img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.svc-layer h3 {
  font-size: 1.38rem;
  line-height: 1.12;
}

.svc-layer > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.62;
}

.svc-layer ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.svc-layer li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3a3156;
  font-size: .82rem;
  font-weight: 700;
}

.svc-layer li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--violet);
}

.svc-layer > a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: .86rem;
  font-weight: 900;
  transition: gap .2s ease;
}

.svc-layer > a:hover {
  gap: 12px;
}

/* ---------- Process ---------- */

.svc-process {
  padding: clamp(68px, 8vw, 110px) 0 0;
}

.svc-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-steps::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 27px;
  border-top: 2px dotted rgba(109, 40, 217, .26);
}

.svc-steps::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 27px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), #a78bfa);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s ease .3s;
}

.svc-steps.is-in::after {
  transform: scaleX(1);
}

.svc-steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.svc-steps i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 40, 217, .18);
  border-radius: 999px;
  color: var(--violet);
  background: #fff;
  box-shadow: 0 12px 28px rgba(62, 34, 101, .1);
  font-style: normal;
  font-weight: 900;
}

.svc-steps span {
  margin-top: 8px;
  color: var(--violet);
  font-family: "DM Mono", monospace;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .16em;
}

.svc-steps h3 {
  font-size: 1.08rem;
}

.svc-steps p {
  max-width: 17ch;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.55;
}

/* ---------- Industry systems ---------- */

.svc-industries {
  margin-top: clamp(68px, 8vw, 110px);
  padding: clamp(60px, 6.5vw, 92px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 58, 237, .34), transparent 26rem),
    radial-gradient(circle at 94% 88%, rgba(139, 92, 246, .22), transparent 22rem),
    linear-gradient(150deg, #1c0e36, #120a26 58%, #180f2e);
}

.svc-industries__inner {
  display: grid;
  grid-template-columns: minmax(270px, .92fr) minmax(0, 2.1fr);
  gap: clamp(28px, 3.5vw, 54px);
  align-items: center;
}

.svc-industries .eyebrow {
  color: #c4b5fd;
}

.svc-industries h2 {
  color: #fff;
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
}

.svc-industries em {
  color: #c4b5fd;
}

.svc-industries__copy > p:not(.eyebrow) {
  max-width: 34ch;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
  line-height: 1.72;
}

.svc-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.svc-industry {
  --acc: #8b5cf6;
  --acc-soft: rgba(139, 92, 246, .2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.svc-industry:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.svc-industry--green { --acc: #34d399; --acc-soft: rgba(52, 211, 153, .18); }
.svc-industry--blue { --acc: #60a5fa; --acc-soft: rgba(96, 165, 250, .18); }
.svc-industry--amber { --acc: #fbbf24; --acc-soft: rgba(251, 191, 36, .16); }

.svc-industry header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-industry header i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--acc);
  background: var(--acc-soft);
  font-style: normal;
  font-weight: 900;
  font-size: .8rem;
}

.svc-industry h3 {
  color: #fff;
  font-size: 1.06rem;
}

.svc-industry__rows {
  display: grid;
  gap: 9px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .22);
}

.svc-industry__rows > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 8px;
}

.svc-industry__rows span {
  color: rgba(255, 255, 255, .6);
  font-size: .66rem;
  font-weight: 700;
}

.svc-industry__rows i {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.svc-industry__rows i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--acc);
}

.svc-industry__rows b {
  color: #fff;
  font-size: .7rem;
  text-align: right;
}

.svc-industry > p {
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  line-height: 1.55;
}

.svc-industry > a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--acc);
  font-size: .78rem;
  font-weight: 900;
}

/* ---------- Audit + ecosystem ---------- */

.svc-connect {
  display: grid;
  grid-template-columns: minmax(330px, .74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(68px, 8vw, 110px) 0 0;
}

.svc-audit {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.svc-audit h2 {
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
}

.svc-audit__sub {
  max-width: 34ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.svc-audit__rows {
  display: grid;
  gap: 17px;
  margin: 28px 0;
}

.svc-audit__row {
  display: grid;
  grid-template-columns: 24px 108px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
}

.svc-audit__row > i {
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
  font-size: .82rem;
}

.svc-audit__row span {
  color: #3a3156;
  font-size: .84rem;
  font-weight: 700;
}

.svc-audit__bar {
  height: 8px;
  border-radius: 999px;
  background: var(--lavender);
  overflow: hidden;
}

.svc-audit__bar i {
  display: block;
  width: var(--val, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), #8b5cf6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s ease .35s;
}

.svc-audit.is-in .svc-audit__bar i {
  transform: scaleX(1);
}

.svc-audit__row b {
  font-size: .9rem;
  font-weight: 900;
  text-align: right;
}

.svc-audit__row b small {
  color: var(--muted);
  font-weight: 700;
}

.svc-audit__cta {
  width: 100%;
}

.svc-audit__note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  text-align: center;
}

.svc-eco h2 {
  font-size: clamp(1.95rem, 2.8vw, 2.7rem);
}

.svc-eco__map {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 460;
  margin-top: clamp(24px, 3vw, 40px);
}

.svc-eco__map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.svc-eco__map line {
  stroke: rgba(109, 40, 217, .3);
  stroke-width: 2;
  stroke-dasharray: 3 8;
  animation: ecoDash 1.6s linear infinite;
}

@keyframes ecoDash {
  to {
    stroke-dashoffset: -11;
  }
}

.svc-eco__core,
.svc-eco__node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.svc-eco__core {
  z-index: 2;
  padding: 22px 28px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(139, 92, 246, .55), transparent 6rem),
    linear-gradient(155deg, #241040, #150b2b);
  box-shadow: 0 24px 60px rgba(109, 40, 217, .38);
}

.svc-eco__core b {
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
}

.svc-eco__node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(62, 34, 101, .12);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-eco__node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 18px 40px rgba(109, 40, 217, .2);
}

.svc-eco__node i {
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
  font-size: .74rem;
}

/* ---------- Before / after ---------- */

.svc-transform {
  padding: clamp(68px, 8vw, 110px) 0 0;
}

.svc-compare {
  --pos: 50%;
  position: relative;
  min-height: clamp(400px, 42vw, 500px);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.svc-compare__before,
.svc-compare__after {
  position: absolute;
  inset: 0;
}

.svc-compare__before {
  display: grid;
  align-content: end;
  padding: clamp(22px, 3vw, 36px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(20, 12, 38, .5), rgba(20, 12, 38, .86)),
    url("/assets/mimibyte-field-support.png") center / cover;
}

.svc-compare__before ul,
.svc-compare__after ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-compare__before li,
.svc-compare__after li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .86rem;
  font-weight: 700;
}

.svc-compare__before li::before,
.svc-compare__after li::before {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
}

.svc-compare__before li::before {
  content: "✕";
  color: #fca5a5;
  background: rgba(248, 113, 113, .18);
}

.svc-compare__after li::before {
  content: "✓";
  color: #6ee7b7;
  background: rgba(52, 211, 153, .16);
}

.svc-compare__after {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  color: #fff;
  clip-path: inset(0 0 0 var(--pos));
  background:
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, .4), transparent 18rem),
    linear-gradient(150deg, #1d0f38, #120a26);
}

.svc-compare__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 12, 38, .55);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.svc-compare__after .svc-compare__tag {
  left: auto;
  right: 18px;
  background: rgba(139, 92, 246, .4);
}

.svc-compare__dash {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
}

.svc-compare__dash > b {
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.svc-compare__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.svc-compare__metrics > div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
}

.svc-compare__metrics span {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-family: "DM Mono", monospace;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.svc-compare__metrics strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.svc-compare__metrics small {
  display: block;
  margin-top: 4px;
  color: #6ee7b7;
  font-size: .58rem;
  font-weight: 700;
}

.svc-compare__dash svg {
  width: 100%;
  height: 44px;
  color: #a78bfa;
}

.svc-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, .85);
  transform: translateX(-50%);
  pointer-events: none;
}

.svc-compare__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--violet);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 12, 38, .4);
  transform: translate(-50%, -50%);
  font-size: .58rem;
  letter-spacing: .06em;
}

.svc-compare input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* ---------- Trust metrics ---------- */

.svc-metrics {
  padding: clamp(60px, 7vw, 92px) 0 0;
}

.svc-metrics__eyebrow {
  text-align: center;
}

.svc-metric-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 46px rgba(62, 34, 101, .07);
  overflow: hidden;
}

.svc-metric-row > div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 148px;
  padding: 24px 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.svc-metric-row > div:first-child {
  border-left: 0;
}

.svc-metric-row i {
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
  font-size: 1.05rem;
}

.svc-metric-row strong {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.15;
}

.svc-metric-row span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
}

/* ---------- Final CTA ---------- */

.svc-cta {
  margin-top: clamp(68px, 8vw, 110px);
  padding: clamp(60px, 7vw, 96px) 0;
  color: #fff;
  background:
    radial-gradient(rgba(167, 139, 250, .2) 1px, transparent 1.6px) 0 0 / 26px 26px,
    radial-gradient(circle at 84% 16%, rgba(124, 58, 237, .4), transparent 24rem),
    linear-gradient(150deg, #1c0e36, #120a26 62%, #180f2e);
}

.svc-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.svc-cta .eyebrow {
  color: #c4b5fd;
}

.svc-cta h2 {
  max-width: 17ch;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

.svc-cta em {
  color: #c4b5fd;
}

.svc-cta__side p {
  max-width: 46ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.78;
}

/* ---------- Footer (injected by site.js) ---------- */

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}

.public-footer {
  padding: 44px 0 26px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .2), transparent 22rem),
    linear-gradient(180deg, #17112d, #100b22);
}

.public-footer-shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(520px, 1.4fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

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

.public-footer .public-footer-brand p {
  max-width: 36ch;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
}

.public-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.public-footer-social a:hover,
.public-footer-social a:focus-visible {
  color: #fff;
  border-color: rgba(167, 139, 250, .55);
  background: rgba(139, 92, 246, .32);
  transform: translateY(-2px);
}

.public-footer-social svg {
  display: block;
}

.public-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.public-footer .footer-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.public-footer .footer-logo span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.public-footer .footer-logo strong {
  color: #fff;
  font-family: "Bodoni Moda", "Didot", Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
}

.public-footer .footer-logo small {
  color: rgba(255, 255, 255, .88);
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.public-footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 420px;
}

.public-footer-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 14px;
  font: 700 .92rem/1 "DM Sans", system-ui, sans-serif;
}

.public-footer-form input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.public-footer-form button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7f48f2);
  box-shadow: 0 14px 32px rgba(109, 40, 217, .24);
  font: 900 .92rem/1 "DM Sans", system-ui, sans-serif;
  cursor: pointer;
}

.public-footer-form .form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

.public-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.public-footer-links h4 {
  margin: 0 0 12px;
  color: rgba(238, 231, 255, .92);
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.public-footer-links a,
.public-footer-links span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 700;
}

.public-footer-links a:hover {
  color: #fff;
}

.public-footer-base {
  width: min(var(--max), calc(100% - 64px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
}

@keyframes constructionMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .brand {
    min-width: 218px;
  }

  .svc-hero__grid {
    grid-template-columns: minmax(360px, .95fr) minmax(400px, 1.05fr);
  }

  .svc-os__chrome {
    grid-template-columns: minmax(0, 1fr) 168px;
  }

  .svc-os__side {
    display: none;
  }

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

  .svc-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
  }

  .svc-steps::before,
  .svc-steps::after {
    display: none;
  }

  .svc-industries__inner {
    grid-template-columns: 1fr;
  }

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

  .svc-connect {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-shell,
  .svc-hero__grid,
  .svc-layers,
  .svc-process,
  .svc-industries__inner,
  .svc-connect,
  .svc-transform,
  .svc-metrics,
  .svc-cta__inner {
    width: min(var(--max), calc(100% - 36px));
  }

  .brand {
    min-width: 202px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    inset: 78px 18px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(38, 16, 68, .12);
    border-radius: 18px;
    background: rgba(255, 253, 249, .96);
    box-shadow: 0 24px 70px rgba(38, 16, 68, .18);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a:not(.nav-cta) {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--lavender-2);
  }

  .nav-cta {
    margin-top: 8px;
  }

  .public-footer-shell,
  .public-footer-links {
    grid-template-columns: 1fr;
  }

  .public-footer-shell,
  .public-footer-base {
    width: min(var(--max), calc(100% - 36px));
  }

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

  .svc-hero {
    padding-top: 40px;
  }

  .svc-hero__grid {
    grid-template-columns: 1fr;
  }

  .svc-hero h1 {
    font-size: clamp(2.5rem, 9.5vw, 3.6rem);
  }

  .svc-os__chrome {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .svc-cta__inner {
    grid-template-columns: 1fr;
  }

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

  .svc-metric-row > div {
    border-top: 1px solid var(--line);
  }

  .svc-metric-row > div:nth-child(-n+2) {
    border-top: 0;
  }

  .svc-metric-row > div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .svc-layer-grid,
  .svc-industry-grid,
  .svc-metric-row {
    grid-template-columns: 1fr;
  }

  .svc-metric-row > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .svc-metric-row > div:first-child {
    border-top: 0;
  }

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

  .svc-os__stats {
    grid-template-columns: 1fr;
  }

  .svc-eco__map {
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .svc-eco__map svg {
    display: none;
  }

  .svc-eco__core,
  .svc-eco__node {
    position: static;
    transform: none;
  }

  .svc-eco__core {
    width: 100%;
    order: -1;
    padding: 18px;
  }

  .svc-eco__node:hover {
    transform: scale(1.04);
  }

  .svc-compare {
    min-height: 0;
    overflow: visible;
    display: grid;
    gap: 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .svc-compare__before,
  .svc-compare__after {
    position: relative;
    inset: auto;
    min-height: 300px;
    border-radius: 18px;
    overflow: hidden;
    clip-path: none;
    box-shadow: var(--shadow);
  }

  .svc-compare__after {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .svc-compare__after .svc-compare__tag {
    right: auto;
    left: 18px;
  }

  .svc-compare__handle,
  .svc-compare input[type="range"] {
    display: none;
  }

}

@media (max-width: 620px) {
  .brand {
    min-width: 176px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .brand small {
    font-size: .44rem;
  }

  .nav-shell {
    min-height: 70px;
  }
}

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

  .construction-marquee__track {
    animation: none !important;
  }

  .svc-os__event {
    animation: none;
  }

  .svc-eco__map line {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .svc-steps::after,
  .svc-audit__bar i {
    transition: none;
  }

  .btn,
  .svc-layer,
  .svc-industry,
  .svc-eco__node {
    transition: none;
  }
}
