:root {
  --navy: #061225;
  --navy-2: #091120;
  --panel: #0d1524;
  --panel-2: #111b2d;
  --white: #ffffff;
  --text: #ffffff;
  --muted: rgba(255,255,255,.92);
  --muted-2: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --cyan: #63f0ff;
  --violet: #a978ff;
  --blue: #2f67ff;
  --brand-blue: #2c64ff;
  --max: 1480px;
  --gutter: clamp(24px, 4vw, 70px);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 10px;
  background: #fff;
  color: #06101f;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* Header / navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,10,20,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  text-decoration: none;
  font-size: 50px;
  font-weight: 760;
  line-height: .9;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.wordmark-z {
  position: relative;
  display: inline-block;
  color: var(--brand-blue);
  text-shadow: 0 0 10px rgba(44,100,255,.52),
               0 0 24px rgba(44,100,255,.26);
}

.z-lights {
  position: absolute;
  inset: 1% 1% -1%;
  pointer-events: none;
}

.z-lights i {
  position: absolute;
  left: 18%;
  bottom: 7%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan),
              0 0 18px rgba(99,240,255,.88);
  animation: zRise 3.2s infinite cubic-bezier(.45,.05,.2,1);
}

.z-lights i:nth-child(2) {
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet),
              0 0 18px rgba(169,120,255,.86);
  animation-delay: 1.05s;
}

.z-lights i:nth-child(3) {
  background: #7ea0ff;
  box-shadow: 0 0 8px #7ea0ff,
              0 0 18px rgba(126,160,255,.86);
  animation-delay: 2.1s;
}

@keyframes zRise {
  0%, 10% {
    transform: translate(0, 22px) scale(.7);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  58% {
    transform: translate(var(--mid-x, 8px), 2px) scale(1);
    opacity: 1;
  }

  82% {
    transform: translate(var(--x, 19px), -17px) scale(.92);
    opacity: .95;
  }

  100% {
    transform: translate(var(--x, 19px), -27px) scale(.68);
    opacity: 0;
  }
}

.z-lights i:first-child {
  --mid-x: 7px;
  --x: 15px;
}

.z-lights i:nth-child(2) {
  --mid-x: 12px;
  --x: 23px;
}

.z-lights i:nth-child(3) {
  --mid-x: 16px;
  --x: 30px;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-menu-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 17px;
  font-weight: 590;
  cursor: pointer;
  border-radius: 12px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-menu-button:hover,
.nav-menu-button:focus-visible,
.nav-item.is-open > .nav-menu-button {
  color: #fff;
  background: rgba(255,255,255,.055);
}

.nav-menu-button svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.nav-item.is-open > .nav-menu-button svg {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 17px;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(720px, 84vw);
  transform: translateX(-50%) translateY(-6px);
  padding: 22px;
  background: #0a111e;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease,
              transform .18s ease,
              visibility .18s;
}

.nav-item.is-open > .dropdown,
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.dropdown-group {
  padding: 12px;
}

.dropdown-label {
  margin: 0 0 10px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 760;
}

.dropdown a {
  display: block;
  padding: 9px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 650;
}

.dropdown a span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.35;
}

.dropdown a:hover span,
.dropdown a:focus-visible span {
  color: #fff;
}

.nav-toggle {
  display: none;
}


/* Shared typography */

.eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 760;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 4.7vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 660;
  text-wrap: balance;
}

.section-heading,
.section-link-heading {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.45vw, 46px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 640;
  text-wrap: balance;
}

.section-link-heading a {
  color: inherit;
  text-decoration: none;
}

.section-link-heading a:hover .heading-arrow,
.section-link-heading a:focus-visible .heading-arrow {
  transform: translate(5px,-5px);
  opacity: 1;
}

.heading-arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: .62em;
  transition: transform .18s ease,
              opacity .18s ease;
  opacity: .8;
}

.lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
}


/* Home */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(103,242,255,.06), transparent 22%),
    radial-gradient(circle at 84% 58%, rgba(156,124,255,.05), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(520px,1.05fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-top: 82px;
  padding-bottom: 82px;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 740;
  transition: transform .18s ease,
              background .18s ease;
}

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

.button-primary:hover {
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  color: var(--muted);
  transition: transform .18s ease;
}

.text-link:hover span {
  transform: translate(4px,-4px);
}

.hero-stage {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,.035),
    rgba(255,255,255,.012)
  );
  overflow: hidden;
}
.signal-orbit { position: absolute; inset: 0; }
.signal-orbit svg { width: 100%; height: 100%; }
.signal-path { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 1.6; }
.signal-dot { filter: drop-shadow(0 0 6px currentColor); }

.stage-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 156px;
  height: 156px;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
}

.stage-center .mini-z {
  position: relative;
  display: inline-block;
  font-size: 82px;
  font-weight: 820;
  color: var(--brand-blue);
  letter-spacing: -.08em;
  text-shadow: 0 0 11px rgba(44,100,255,.48),
               0 0 28px rgba(44,100,255,.24);
}

.stage-z-lights {
  position: absolute;
  inset: 7% 8% 4%;
  pointer-events: none;
}

.stage-z-lights i {
  position: absolute;
  left: 18%;
  bottom: 6%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan),
              0 0 20px rgba(99,240,255,.85);
  animation: stageZRise 3.4s infinite cubic-bezier(.45,.05,.2,1);
}

.stage-z-lights i:nth-child(2) {
  background: var(--violet);
  box-shadow: 0 0 9px var(--violet),
              0 0 20px rgba(169,120,255,.82);
  animation-delay: 1.1s;
}

.stage-z-lights i:nth-child(3) {
  background: #7ea0ff;
  box-shadow: 0 0 9px #7ea0ff,
              0 0 20px rgba(126,160,255,.82);
  animation-delay: 2.2s;
}

@keyframes stageZRise {
  0%, 10% {
    transform: translate(0, 24px) scale(.72);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  58% {
    transform: translate(var(--mid-x, 13px), 2px) scale(1);
    opacity: 1;
  }

  82% {
    transform: translate(var(--x, 30px), -22px) scale(.92);
    opacity: .94;
  }

  100% {
    transform: translate(var(--x, 30px), -34px) scale(.68);
    opacity: 0;
  }
}

.stage-z-lights i:first-child {
  --mid-x: 10px;
  --x: 24px;
}

.stage-z-lights i:nth-child(2) {
  --mid-x: 17px;
  --x: 34px;
}

.stage-z-lights i:nth-child(3) {
  --mid-x: 24px;
  --x: 44px;
}

.stage-caption {
  position: absolute;
  left: 26px;
  top: 24px;
  max-width: 280px;
}

.stage-caption strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.stage-caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.story-band {
  padding: 92px 0 62px;
}

.story-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

.story-grid .lead {
  max-width: 900px;
}

.home-section {
  padding: 92px 0;
}

.home-section.compact {
  padding: 72px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: clamp(38px, 7vw, 120px);
  align-items: start;
  margin-bottom: 48px;
}

.section-intro .lead {
  margin-top: 18px;
}


/* Interactive solution preview */

.solution-experience {
  display: grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap: 24px;
  align-items: stretch;
}

.solution-menu {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-strong);
}

.solution-option {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.solution-option strong {
  font-size: 18px;
  font-weight: 650;
}

.solution-option span {
  color: var(--muted-2);
  font-size: 14px;
}

.solution-option:hover,
.solution-option:focus-visible,
.solution-option.active {
  color: #fff;
}

.solution-option.active span {
  color: #fff;
}

.solution-visual {
  position: relative;
  min-height: 510px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}

.solution-visual-head {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.solution-visual-head h3 {
  margin: 0;
  color: #fff;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.solution-visual-head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.solution-canvas {
  position: absolute;
  inset: 148px 28px 28px;
}

.solution-canvas svg {
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke: rgba(255,255,255,.17);
  stroke-width: 1.5;
}

.flow-label {
  position: absolute;
  min-width: 132px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.flow-label small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 450;
}

.flow-label.input { left: 2%; top: 42%; }
.flow-label.center { left: 43%; top: 38%; }
.flow-label.out1 { right: 1%; top: 10%; }
.flow-label.out2 { right: 1%; top: 40%; }
.flow-label.out3 { right: 1%; top: 70%; }


/* Evidence */

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

.metric-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.022);
  text-decoration: none;
  transition: background .18s ease,
              transform .18s ease;
}

.metric-card:hover,
.metric-card:focus-visible {
  background: rgba(255,255,255,.045);
  transform: translateY(-2px);
}

.metric-value {
  color: #fff;
  font-size: 58px;
  line-height: .9;
  font-weight: 680;
  letter-spacing: -.045em;
}

.metric-label {
  color: #fff;
  font-size: 18px;
  font-weight: 650;
}

.metric-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.metric-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 82px;
  margin-top: 20px;
}

.metric-bars i {
  flex: 1;
  min-width: 12px;
  border-radius: 6px 6px 2px 2px;
  background: #fff;
  opacity: .9;
  transform-origin: bottom;
  animation: barIn .8s both;
}

.metric-bars i:nth-child(1) {
  height: 42%;
  animation-delay: .05s;
}

.metric-bars i:nth-child(2) {
  height: 68%;
  animation-delay: .12s;
}

.metric-bars i:nth-child(3) {
  height: 88%;
  animation-delay: .19s;
}

.metric-bars i:nth-child(4) {
  height: 74%;
  animation-delay: .26s;
}

@keyframes barIn {
  from {
    transform: scaleY(.1);
    opacity: .15;
  }

  to {
    transform: scaleY(1);
    opacity: .9;
  }
}


/* Technology preview */

.tech-stage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}

.tech-constellation {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.022);
  overflow: hidden;
}

.tech-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 138px;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: #fff;
  font-weight: 780;
  background: #0b1423;
}

.tech-chip {
  position: absolute;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0d1625;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.tech-chip:hover,
.tech-chip:focus-visible,
.tech-chip.active {
  background: #fff;
  color: var(--navy);
}

.tech-chip.t1 { left: 8%; top: 16%; }
.tech-chip.t2 { right: 9%; top: 14%; }
.tech-chip.t3 { left: 7%; bottom: 17%; }
.tech-chip.t4 { right: 7%; bottom: 15%; }
.tech-chip.t5 { left: 42%; top: 7%; }
.tech-chip.t6 { left: 40%; bottom: 7%; }
.tech-chip.t7 { right: 3%; top: 47%; }

.tech-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tech-lines line {
  stroke: rgba(255,255,255,.10);
  stroke-width: 1;
}

.tech-detail {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.022);
}

.tech-detail h3 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.06;
}

.tech-detail p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}


/* Approach preview */

.approach-preview {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
}

.approach-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  text-decoration: none;
  transition: background .18s ease,
              transform .18s ease;
}

.approach-card:hover,
.approach-card:focus-visible {
  background: rgba(255,255,255,.045);
  transform: translateY(-2px);
}

.approach-card span {
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: .1em;
}

.approach-card strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.approach-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}
/* Page hero / inner pages */

.page-hero {
  padding: 96px 0 70px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

.page-hero h1 {
  font-size: clamp(46px, 4.1vw, 56px);
  line-height: 1.02;
}

.page-hero .lead {
  max-width: 880px;
}

.content-shell {
  padding-bottom: 90px;
}

.page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 112px;
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.side-nav button,
.side-nav a {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  text-decoration: none;
  font-size: 17px;
  font-weight: 620;
  cursor: pointer;
}

.side-nav button:hover,
.side-nav button:focus-visible,
.side-nav button.active,
.side-nav a:hover,
.side-nav a:focus-visible {
  color: #fff;
}

.side-nav span {
  color: var(--muted-2);
  font-size: 13px;
}

.page-stage {
  min-height: 600px;
}

.page-section {
  padding: 14px 0 72px;
}

.page-section h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 640;
}

.page-section h3 {
  margin: 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.1;
}

.page-section p {
  color: var(--muted);
  font-size: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.detail-card {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}

.detail-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.detail-card p {
  margin: 10px 0 0;
  font-size: 16px;
}


/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px,7vw,110px);
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.022);
}

.contact-card label {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #091221;
  color: #fff;
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.field {
  margin-bottom: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}


/* Footer */

.site-footer {
  padding: 44px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr auto minmax(230px,.8fr);
  gap: 36px;
  align-items: center;
}

.footer-brand .body-copy {
  margin: 14px 0 0;
}

.footer-wordmark {
  font-size: 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 620;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-contact span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 760;
}

.footer-contact a {
  display: inline-block;
  margin-top: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 13px;
}


/* Reveal motion */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* Responsive */

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

  .wordmark {
    font-size: 44px;
  }

  .primary-nav {
    gap: 2px;
  }

  .nav-link,
  .nav-menu-button {
    padding-inline: 9px;
    font-size: 16px;
  }

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

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

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

@media (max-width: 980px) {
  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
  }

  .nav-toggle::before {
    transform: translateY(-4px);
  }

  .nav-toggle::after {
    transform: translateY(4px);
  }

  .nav-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 30px var(--gutter);
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    overflow-y: auto;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link,
  .nav-menu-button {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 19px;
  }

  .dropdown {
    position: static;
    width: 100%;
    transform: none !important;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 10px 0 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-item.is-open > .dropdown {
    display: block;
  }

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

  .hero-grid,
  .story-grid,
  .section-intro,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .story-grid {
    gap: 20px;
  }

  .solution-experience,
  .tech-stage {
    grid-template-columns: 1fr;
  }

  .solution-menu {
    grid-template-columns: repeat(2,1fr);
    border-top: 0;
    gap: 10px;
  }

  .solution-option {
    min-height: 62px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    border-top: 0;
  }

  .side-nav button,
  .side-nav a {
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
  }

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

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 21px;
  }

  body {
    font-size: 18px;
  }

  .wordmark {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .section-heading,
  .section-link-heading {
    font-size: 38px;
  }

  .page-section h2 {
    font-size: 36px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .home-section,
  .story-band {
    padding-top: 78px;
    padding-bottom: 58px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .solution-menu {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    min-height: 520px;
    padding: 25px;
  }

  .flow-label {
    min-width: 110px;
    font-size: 13px;
    padding: 10px;
  }

  .metrics-grid,
  .approach-preview,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-card {
    min-height: 210px;
  }

  .tech-constellation,
  .tech-detail {
    min-height: 390px;
  }

  .tech-chip {
    font-size: 12px;
    padding: 0 10px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Distinct visual stories */

.dynamic-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.scene-chip {
  position: absolute;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d1625;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.scene-chip small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
  font-weight: 450;
}

.scene-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.scene-workflow .wf-input { left: 4%; top: 42%; }
.scene-workflow .wf-core { left: 42%; top: 38%; }
.scene-workflow .wf-o1 { right: 2%; top: 8%; }
.scene-workflow .wf-o2 { right: 2%; top: 40%; }
.scene-workflow .wf-o3 { right: 2%; top: 72%; }

.scene-workflow svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-workflow path {
  fill: none;
  stroke: rgba(255,255,255,.17);
  stroke-width: 1.5;
}

.scene-crm {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  align-items: stretch;
  padding: 8px 0;
}

.crm-column {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}

.crm-column h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.crm-card {
  margin-top: 10px;
  padding: 13px;
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: 13px;
  transform: translateY(5px);
  opacity: .6;
  animation: crmLift 3.4s infinite ease-in-out;
}

.crm-column:nth-child(2) .crm-card {
  animation-delay: .6s;
}

.crm-column:nth-child(3) .crm-card {
  animation-delay: 1.2s;
}

.crm-column:nth-child(4) .crm-card {
  animation-delay: 1.8s;
}

@keyframes crmLift {
  0%,100% {
    transform: translateY(5px);
    opacity: .45;
  }

  45%,70% {
    transform: translateY(0);
    opacity: 1;
  }
}

.scene-ai {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  gap: 18px;
  align-items: center;
}

.ai-conversation {
  display: grid;
  gap: 12px;
}

.ai-bubble {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  font-size: 13px;
  background: rgba(255,255,255,.025);
}

.ai-bubble:nth-child(2) {
  margin-left: 28px;
}

.ai-bubble:nth-child(3) {
  margin-right: 20px;
}

.ai-orb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle,rgba(103,242,255,.09),transparent 62%);
  color: #fff;
  font-weight: 750;
  animation: orbBreathe 3s infinite ease-in-out;
}

@keyframes orbBreathe {
  0%,100% {
    transform: scale(.96);
  }

  50% {
    transform: scale(1.03);
  }
}

.ai-actions {
  display: grid;
  gap: 12px;
}

.ai-action {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  background: rgba(255,255,255,.025);
}

.ai-action::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.scene-docs {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 22px;
  align-items: center;
}

.doc-stack {
  position: relative;
  height: 220px;
}

.doc-page {
  position: absolute;
  width: 150px;
  height: 190px;
  left: 50%;
  top: 50%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d1625;
  transform: translate(-50%,-50%) rotate(var(--r));
}

.doc-page:nth-child(1) {
  --r: -7deg;
  opacity: .45;
}

.doc-page:nth-child(2) {
  --r: 4deg;
  opacity: .65;
}

.doc-page:nth-child(3) {
  --r: 0deg;
  opacity: 1;
}

.doc-page::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 38px;
  height: 2px;
  background: rgba(255,255,255,.35);
  box-shadow:
    0 22px rgba(255,255,255,.18),
    0 44px rgba(255,255,255,.18),
    0 66px rgba(255,255,255,.18);
}

.extract-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.022);
}

.extract-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #fff;
  font-size: 13px;
}

.extract-row:last-child {
  border-bottom: 0;
}

.extract-row span:last-child {
  color: var(--muted);
}

.route-stack {
  display: grid;
  gap: 12px;
}

.route-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  background: rgba(255,255,255,.025);
  animation: routePulse 3.6s infinite ease-in-out;
}

.route-item:nth-child(2) {
  animation-delay: .7s;
}

.route-item:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes routePulse {
  0%,100% {
    opacity: .45;
  }

  45%,70% {
    opacity: 1;
  }
}


.test-matrix {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,.65fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.test-cell {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.test-cell:nth-child(4n) {
  border-right: 0;
}

.test-cell.head {
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,.035);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.4);
}

.evidence-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.022);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.evidence-panel strong {
  font-size: 26px;
  color: #fff;
}

.evidence-panel p {
  color: var(--muted);
  font-size: 13px;
}

.evidence-lines i {
  display: block;
  height: 2px;
  margin: 12px 0;
  background: rgba(255,255,255,.32);
}

.scene-map {
  position: relative;
  display: grid;
  place-items: center;
}

.map-core {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background: rgba(255,255,255,.02);
}

.map-node {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  background: #0d1625;
}

.map-node.n1 { left: 6%; top: 16%; }
.map-node.n2 { right: 5%; top: 17%; }
.map-node.n3 { left: 8%; bottom: 18%; }
.map-node.n4 { right: 7%; bottom: 15%; }

.scene-code {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #070d17;
  color: #d9e2ef;
  font-family: ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.scene-monitor {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.monitor-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

.monitor-chart i {
  flex: 1;
  background: #fff;
  border-radius: 6px 6px 2px 2px;
  opacity: .9;
  animation: barIn .8s both;
}

.monitor-side {
  display: grid;
  gap: 12px;
}

.monitor-item {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  background: rgba(255,255,255,.02);
}

.scene-video {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg,#0a111d,#111a29);
  overflow: hidden;
}

.scene-video::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 55px rgba(255,255,255,.012),
    0 0 0 110px rgba(255,255,255,.008);
}

.scene-video strong {
  position: relative;
  color: #fff;
  font-size: 20px;
}

@media (max-width:760px) {
  .scene-crm {
    grid-template-columns: repeat(2,1fr);
  }

  .scene-ai,
  .scene-docs,
  .scene-monitor {
    grid-template-columns: 1fr;
  }

  .doc-stack {
    height: 190px;
  }

  .test-matrix {
    grid-template-columns: 1.2fr repeat(3,.6fr);
  }
}

.hero-copy > .eyebrow {
  font-size: 23px;
  letter-spacing: .105em;
}
/* ===== Aug 11, 2026: signature hero + evidence refinement ===== */

:root {
  --brand-blue: #284dcc;
  --brand-blue-deep: #132b83;
  --brand-blue-light: #4169e1;
}

.wordmark-z,
.stage-center .mini-z,
.orchestrator .mini-z {
  color: transparent;
  background: linear-gradient(
    145deg,
    var(--brand-blue-light) 0%,
    #2b50c8 44%,
    var(--brand-blue-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 2px 1px rgba(1,5,14,.96),
    0 0 12px rgba(40,77,204,.34);
  filter: drop-shadow(0 5px 4px rgba(0,0,0,.34));
}

.z-lights {
  inset: 4% 2% 3%;
  overflow: visible;
}

.z-lights i {
  left: 4%;
  top: 76%;
  bottom: auto;
  width: 4.5px;
  height: 4.5px;
  animation: zTrace 4.2s infinite cubic-bezier(.46,.06,.24,1);
}

.z-lights i:nth-child(2) {
  animation-delay: 1.35s;
}

.z-lights i:nth-child(3) {
  animation-delay: 2.7s;
}

@keyframes zTrace {
  0%, 7% {
    transform: translate(0,0) scale(.65);
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  31% {
    transform: translate(var(--zdx,.62em),0) scale(1);
    opacity: 1;
  }

  65% {
    transform: translate(.02em,calc(-1 * var(--zdy,.70em))) scale(.92);
    opacity: 1;
  }

  88% {
    transform: translate(
      var(--zdx,.62em),
      calc(-1 * var(--zdy,.70em))
    ) scale(.82);
    opacity: .96;
  }

  100% {
    transform: translate(
      calc(var(--zdx,.62em) + .05em),
      calc(-1 * var(--zdy,.70em))
    ) scale(.55);
    opacity: 0;
  }
}

.nav-shell {
  grid-template-columns: auto 1fr auto;
}

.primary-nav {
  gap: 6px;
}

.connected-workspace {
  position: relative;
  min-height: 550px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.connected-workspace::before {
  content: "";
  position: absolute;
  inset: 5% 4%;
  background:
    radial-gradient(
      circle at 52% 51%,
      rgba(49,87,229,.16),
      transparent 29%
    ),
    radial-gradient(
      circle at 68% 37%,
      rgba(82,151,255,.08),
      transparent 22%
    );
  filter: blur(10px);
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

.network-path {
  fill: none;
  stroke: url(#flowBlue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 7 15;
  opacity: .56;
  animation: signalWave 5.5s linear infinite;
  filter: drop-shadow(0 0 5px rgba(76,115,255,.36));
}

.network-path-in {
  stroke-width: 2.5;
  opacity: .78;
}

@keyframes signalWave {
  to {
    stroke-dashoffset: -88;
  }
}

.network-pulse {
  fill: #6d8cff;
  filter: url(#flowGlow);
}

.pulse-2 {
  fill: #78dfff;
}

.pulse-3 {
  fill: #4b72ff;
}

.pulse-4 {
  fill: #a5b6ff;
}

.pulse-5 {
  fill: #67d9ff;
}

.system-terminal {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 14px 15px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: linear-gradient(
    160deg,
    rgba(17,29,50,.92),
    rgba(8,16,30,.78)
  );
  box-shadow:
    0 20px 50px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: blur(7px);
}

.system-terminal strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.05;
  color: #fff;
}

.system-terminal small {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .02em;
}

.terminal-screen {
  height: 52px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.09);
  background: #080f1c;
}

.terminal-screen span {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(75,114,255,.92),
    rgba(120,223,255,.28)
  );
}

.terminal-screen span:nth-child(1) {
  width: 72%;
}

.terminal-screen span:nth-child(2) {
  width: 46%;
}

.terminal-screen span:nth-child(3) {
  width: 61%;
}

.terminal-intake {
  left: 1.5%;
  top: 22%;
}

.terminal-crm {
  right: 0;
  top: 18%;
}

.terminal-calendar {
  right: 0;
  bottom: 19%;
}

.terminal-docs {
  left: 18%;
  bottom: 1.5%;
}

.terminal-team {
  right: 18%;
  bottom: 1.5%;
}

.orchestrator {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 49%;
  width: 230px;
  transform: translate(-50%,-50%);
}

.orchestrator-screen {
  position: relative;
  height: 172px;
  overflow: hidden;
  border: 1px solid rgba(114,141,255,.30);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(17,29,52,.98),
    rgba(7,13,25,.98)
  );
  box-shadow:
    0 28px 80px rgba(0,0,0,.34),
    0 0 36px rgba(49,87,229,.11);
}

.orchestrator-topline {
  height: 31px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  color: var(--muted-2);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.orchestrator-topline i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
}

.orchestrator-topline span {
  margin-left: auto;
}

.orchestrator-body {
  height: 141px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.orchestrator .mini-z {
  position: relative;
  display: inline-block;
  font-size: 82px;
  font-weight: 830;
  line-height: .9;
  letter-spacing: -.08em;
}

@keyframes logicPulse {
  50% {
    opacity: .4;
    transform: translateX(5px);
  }
}

.orchestrator-base {
  width: 116px;
  height: 10px;
  margin: 7px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.07),
    rgba(93,119,255,.23),
    rgba(255,255,255,.07)
  );
}

.stage-z-lights {
  inset: 10% 5% 6%;
  overflow: visible;
}

.stage-z-lights i {
  left: 4%;
  top: 76%;
  bottom: auto;
  width: 6px;
  height: 6px;
  animation: stageZTrace 4.4s infinite cubic-bezier(.46,.06,.24,1);
}

.stage-z-lights i:nth-child(2) {
  animation-delay: 1.45s;
}

.stage-z-lights i:nth-child(3) {
  animation-delay: 2.9s;
}

@keyframes stageZTrace {
  0%,7% {
    transform: translate(0,0) scale(.65);
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  31% {
    transform: translate(var(--stage-zdx,.62em),0) scale(1);
    opacity: 1;
  }

  65% {
    transform: translate(
      .02em,
      calc(-1 * var(--stage-zdy,.69em))
    ) scale(.94);
    opacity: 1;
  }

  88% {
    transform: translate(
      var(--stage-zdx,.62em),
      calc(-1 * var(--stage-zdy,.69em))
    ) scale(.84);
    opacity: .96;
  }

  100% {
    transform: translate(
      calc(var(--stage-zdx,.62em) + .06em),
      calc(-1 * var(--stage-zdy,.69em))
    ) scale(.55);
    opacity: 0;
  }
}


/* Concrete before/after workflow story from prior portfolio language. */

.workflow-contrast {
  padding: 72px 0 82px;
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.compact-intro {
  margin-bottom: 34px;
}

.compact-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px,3.5vw,50px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 660;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contrast-lane {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.018);
}

.connected-lane {
  border-color: rgba(75,114,255,.24);
  background: linear-gradient(
    145deg,
    rgba(49,87,229,.085),
    rgba(255,255,255,.018)
  );
}

.lane-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.lane-head span {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 760;
}

.lane-head strong {
  max-width: 260px;
  text-align: right;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.lane-flow {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.lane-flow span {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,.045);
  color: #eef5ff;
  font-size: 13px;
  font-weight: 620;
}

.lane-flow b {
  color: var(--muted-2);
  font-weight: 500;
}

.connected-lane .lane-flow b {
  color: #7290ff;
}


/* Real implementation evidence replaces abstract service-count metrics. */

.evidence-section {
  padding-top: 82px;
}

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

.evidence-card {
  min-height: 255px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.019);
  display: flex;
  flex-direction: column;
}

.evidence-card:hover {
  background: rgba(255,255,255,.03);
}

.evidence-kicker {
  color: #8fa7ff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 780;
}

.evidence-card strong {
  margin-top: 27px;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.evidence-number strong {
  margin-top: 17px;
  font-size: 74px;
  line-height: .9;
  background: linear-gradient(145deg,#6f8aff,#3157e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.evidence-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.mini-flow {
  margin-top: auto;
  display: flex;
  gap: 6px;
  align-items: center;
  padding-top: 22px;
}

.mini-flow i {
  height: 4px;
  flex: 1;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    rgba(49,87,229,.35),
    #5e7cff
  );
}

.mini-flow i:nth-child(2) {
  opacity: .7;
}

.mini-flow i:nth-child(3) {
  opacity: .4;
}

.measurement-strip {
  margin-top: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 13px 22px;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
}

.measurement-strip span {
  color: #8fa7ff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 760;
  margin-right: auto;
}

.measurement-strip b {
  color: #eef4ff;
  font-weight: 620;
}

.ecosystem-section {
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 80px;
}

.ecosystem-ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.075);
  border-bottom: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.012);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 22px 0;
  animation: ecosystemMove 36s linear infinite;
}

.ticker-track span {
  color: #f5f8ff;
  font-size: 18px;
  font-weight: 650;
  white-space: nowrap;
}

.ticker-track i {
  color: #365cd9;
  font-style: normal;
}

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

.ecosystem-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.final-cta {
  padding-bottom: 105px;
}

@media (max-width:1180px) {
  .connected-workspace {
    min-height: 500px;
    transform: scale(.93);
    transform-origin: center;
  }

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

@media (max-width:980px) {
  .connected-workspace {
    width: min(760px,100%);
    margin: 0 auto;
    transform: none;
    min-height: 530px;
  }

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

@media (max-width:680px) {
  .connected-workspace {
    min-height: 470px;
    transform: scale(.85);
    transform-origin: top center;
    margin-bottom: -60px;
  }

  .system-terminal {
    width: 138px;
  }

  .terminal-intake {
    left: -4%;
  }

  .terminal-crm,
  .terminal-calendar {
    right: -4%;
  }

  .terminal-docs {
    left: 8%;
  }

  .terminal-team {
    right: 8%;
  }

  .orchestrator {
    width: 205px;
  }

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

  .evidence-card {
    min-height: 220px;
  }

  .lane-head {
    display: block;
  }

  .lane-head strong {
    display: block;
    margin-top: 8px;
    max-width: none;
    text-align: left;
  }

  .workflow-contrast {
    padding-top: 62px;
    padding-bottom: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
}
/* ===== Aug 11, 2026: focused landing-page hero refinement ===== */

.wordmark-z {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow:
    0 0 8px rgba(65,105,225,.72),
    0 0 19px rgba(36,79,229,.34);
  filter: none;
}

.wordmark-z .z-lights {
  inset: 0;
  overflow: visible;
}

.wordmark-z .z-lights i {
  display: none;
}

.wordmark-z .z-lights i:first-child {
  display: block;
  left: 10%;
  top: 78%;
  width: 4px;
  height: 4px;
  margin: 0;
  background: #8deaff;
  box-shadow:
    0 0 7px #8deaff,
    0 0 14px rgba(65,105,225,.9);
  animation: zSparkTrace 4.8s infinite ease-in-out;
}

@keyframes zSparkTrace {
  0%,8% {
    left: 10%;
    top: 78%;
    opacity: 0;
    transform: scale(.65);
  }

  15% {
    opacity: 1;
  }

  28% {
    left: 78%;
    top: 78%;
    opacity: 1;
    transform: scale(1);
  }

  63% {
    left: 15%;
    top: 15%;
    opacity: 1;
    transform: scale(.9);
  }

  88% {
    left: 80%;
    top: 15%;
    opacity: .95;
    transform: scale(.78);
  }

  100% {
    left: 84%;
    top: 15%;
    opacity: 0;
    transform: scale(.55);
  }
}

.hero-workspace {
  width: 100%;
  min-height: 650px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.hero-workspace::before {
  inset: 7% 12% 9%;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(65,105,225,.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 52% 52%,
      rgba(98,222,255,.05),
      transparent 46%
    );
  filter: blur(16px);
}

.hero-workspace .hero-network {
  inset: 0;
  z-index: 1;
}

.hero-workspace .network-path {
  stroke-width: 3.1;
  stroke-dasharray: 20 12 5 11;
  opacity: .66;
  animation: heroWave 3.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(65,105,225,.45));
  transition:
    opacity .25s ease,
    stroke-width .25s ease,
    filter .25s ease;
}

.hero-workspace .network-path-in {
  stroke-width: 3.6;
  opacity: .88;
}

.hero-workspace .network-path.is-focus {
  opacity: 1;
  stroke-width: 4.2;
  filter: drop-shadow(0 0 8px rgba(96,143,255,.75));
}

@keyframes heroWave {
  to {
    stroke-dashoffset: -96;
  }
}

.hero-workspace .network-pulse {
  filter: url(#flowGlow);
}

.hero-workspace .system-terminal {
  width: 190px;
  min-height: 126px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  background: linear-gradient(
    160deg,
    rgba(18,31,55,.96),
    rgba(7,15,29,.88)
  );
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow:
    0 20px 54px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.035);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.hero-workspace .system-terminal:hover,
.hero-workspace .system-terminal:focus-visible,
.hero-workspace .system-terminal.is-active {
  transform: translateY(-4px);
  border-color: rgba(104,139,255,.62);
  background: linear-gradient(
    160deg,
    rgba(25,43,76,.98),
    rgba(8,17,32,.94)
  );
  box-shadow:
    0 24px 64px rgba(0,0,0,.32),
    0 0 26px rgba(65,105,225,.13),
    inset 0 1px 0 rgba(255,255,255,.05);
  outline: none;
}

.hero-workspace .system-terminal strong {
  margin-top: 11px;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.hero-workspace .system-terminal small {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.32;
  color: #aebbd0;
}

.hero-workspace .terminal-screen {
  height: 48px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg,#08101e,#060d18);
  overflow: hidden;
}

.hero-workspace .terminal-screen span {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #4169e1,
    rgba(131,232,255,.34)
  );
  animation: terminalCurrent 2.6s ease-in-out infinite;
}

.hero-workspace .terminal-screen span:nth-child(2) {
  animation-delay: .35s;
}

.hero-workspace .terminal-screen span:nth-child(3) {
  animation-delay: .7s;
}

@keyframes terminalCurrent {
  0%,100% {
    opacity: .42;
    transform: translateX(-8%);
  }

  50% {
    opacity: 1;
    transform: translateX(8%);
  }
}

.hero-workspace .terminal-intake {
  left: 1.5%;
  top: 24%;
}

.hero-workspace .terminal-crm {
  right: 0;
  top: 17%;
}

.hero-workspace .terminal-calendar {
  right: 0;
  bottom: 17%;
}

.hero-workspace .terminal-records {
  left: 16%;
  bottom: 1%;
}

.hero-workspace .terminal-team {
  right: 16%;
  bottom: 1%;
}

.hero-workspace .hero-orchestrator {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 48%;
  width: 278px;
  padding: 0;
  transform: translate(-50%,-50%);
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.hero-workspace .hero-orchestrator:hover,
.hero-workspace .hero-orchestrator:focus-visible {
  outline: none;
}

.hero-workspace .hero-orchestrator:hover .orchestrator-screen,
.hero-workspace .hero-orchestrator:focus-visible .orchestrator-screen,
.hero-workspace .hero-orchestrator.is-active .orchestrator-screen {
  border-color: rgba(109,143,255,.68);
  box-shadow:
    0 34px 90px rgba(0,0,0,.38),
    0 0 34px rgba(65,105,225,.17);
}

.hero-workspace .orchestrator-screen {
  display: block;
  height: 206px;
  border: 1px solid rgba(112,139,255,.34);
  border-radius: 19px;
  background: linear-gradient(
    145deg,
    rgba(17,30,54,.99),
    rgba(6,13,25,.99)
  );
  box-shadow:
    0 30px 84px rgba(0,0,0,.36),
    0 0 34px rgba(49,87,229,.10);
  transition:
    border-color .22s ease,
    box-shadow .22s ease;
}

.hero-workspace .orchestrator-topline {
  height: 36px;
  font-size: 11px;
  letter-spacing: .095em;
}

.hero-workspace .orchestrator-body {
  height: 168px;
  gap: 28px;
}

.hero-workspace .orchestrator .mini-z {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 104px;
  font-weight: 820;
  text-shadow:
    0 0 10px rgba(255,255,255,.10),
    0 0 24px rgba(65,105,225,.38);
  filter: none;
}

.hero-workspace .orchestrator-stand {
  display: block;
  width: 18px;
  height: 25px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(112,139,255,.38),
    rgba(255,255,255,.08)
  );
}

.hero-workspace .orchestrator-base {
  display: block;
  width: 118px;
  height: 10px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.08),
    rgba(65,105,225,.38),
    rgba(255,255,255,.08)
  );
}

.hero-detail {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 22px;
  width: min(720px,72%);
  transform: translateX(-50%);
  padding: 16px 20px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(7,15,29,.86);
  backdrop-filter: blur(13px);
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
  transition:
    opacity .18s ease,
    transform .18s ease;
}

.hero-detail.is-changing {
  opacity: .25;
  transform: translateX(-50%) translateY(4px);
}

.hero-detail-kicker {
  margin: 0 0 5px;
  color: #85a1ff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
}

.hero-detail strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.hero-detail p:last-child {
  margin: 6px 0 0;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero-workspace {
    min-height: 760px;
    transform: none;
    margin: 0;
  }

  .hero-workspace .hero-network {
    transform: scale(.9);
    transform-origin: center;
  }

  .hero-workspace .terminal-intake {
    left: 1%;
    top: 18%;
  }

  .hero-workspace .terminal-crm {
    right: 1%;
    top: 18%;
  }

  .hero-workspace .terminal-calendar {
    right: 1%;
    bottom: 20%;
  }

  .hero-workspace .terminal-records {
    left: 1%;
    bottom: 20%;
  }

  .hero-workspace .terminal-team {
    right: calc(50% - 95px);
    bottom: 2%;
  }

  .hero-detail {
    width: min(680px,92%);
    bottom: 126px;
  }
}

@media (max-width: 680px) {
  .hero-workspace {
    min-height: 900px;
  }

  .hero-workspace .hero-network {
    display: none;
  }

  .hero-workspace .hero-orchestrator {
    top: 19%;
    width: 240px;
  }

  .hero-workspace .orchestrator-screen {
    height: 180px;
  }

  .hero-workspace .orchestrator-body {
    height: 142px;
  }

  .hero-workspace .orchestrator .mini-z {
    font-size: 88px;
  }

  .hero-workspace .system-terminal {
    width: calc(50% - 14px);
    min-height: 118px;
  }

  .hero-workspace .terminal-intake {
    left: 0;
    top: 38%;
  }

  .hero-workspace .terminal-crm {
    right: 0;
    top: 38%;
  }

  .hero-workspace .terminal-calendar {
    right: 0;
    bottom: 27%;
  }

  .hero-workspace .terminal-records {
    left: 0;
    bottom: 27%;
  }

  .hero-workspace .terminal-team {
    left: 50%;
    right: auto;
    bottom: 12%;
    transform: translateX(-50%);
  }

  .hero-workspace .terminal-team:hover,
  .hero-workspace .terminal-team:focus-visible,
  .hero-workspace .terminal-team.is-active {
    transform: translateX(-50%) translateY(-4px);
  }

  .hero-detail {
    bottom: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark-z .z-lights i:first-child,
  .hero-workspace .network-path,
  .hero-workspace .terminal-screen span {
    animation: none !important;
  }
}

.wordmark-z .z-lights {
  display: none !important;
}

.hero-workspace {
  margin-top: -34px;
}

.hero-detail {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(760px,92%);
  transform: none;
  margin: -12px auto 0;
}

.hero-detail.is-changing {
  transform: translateY(4px);
}

@media (max-width:980px) {
  .hero-detail {
    width: min(700px,94%);
    bottom: auto;
    margin: -4px auto 0;
  }
}

@media (max-width:680px) {
  .hero-workspace {
    margin-top: -10px;
  }

  .hero-detail {
    width: 100%;
    bottom: auto;
    margin: 4px auto 0;
  }
}


/* ===== Hero full-system refinement — 2026-08-11 ===== */

@keyframes systemCurrent {
  to {
    stroke-dashoffset: -94;
  }
}

.system-pulse {
  fill: #4169e1;
  opacity: .95;
  filter: url(#heroFlowGlow);
}

.node-open {
  color: #9fb0db;
  font-size: 25px;
  line-height: 1;
}

.node-inputs {
  left: 0;
  top: 94px;
}

.node-data {
  left: 0;
  top: 274px;
}

.node-documents {
  left: 0;
  top: 454px;
}

.node-rules {
  right: 0;
  top: 94px;
}

.node-approvals {
  right: 0;
  top: 274px;
}

.node-actions {
  right: 0;
  top: 454px;
}

.node-visibility {
  left: calc(50% - 278px);
  bottom: 4px;
}

.node-audit {
  right: calc(50% - 278px);
  bottom: 4px;
}

.ring-1 {
  width: 110px;
  height: 110px;
  animation: ringBreathe 3s ease-in-out infinite;
}

.ring-2 {
  width: 174px;
  height: 174px;
  animation: ringBreathe 3.8s ease-in-out infinite reverse;
}

.ring-3 {
  width: 236px;
  height: 236px;
  opacity: .45;
  animation: ringBreathe 4.4s ease-in-out infinite;
}

@keyframes ringBreathe {
  50% {
    opacity: .92;
    transform: translate(-50%,-50%) scale(1.035);
  }
}

.ln-1 {
  left: 16%;
  top: 24%;
}

.ln-2 {
  left: 29%;
  top: 66%;
  animation-delay: .35s;
}

.ln-3 {
  left: 43%;
  top: 15%;
  animation-delay: .8s;
}

.ln-4 {
  right: 20%;
  top: 26%;
  animation-delay: 1.1s;
}

.ln-5 {
  right: 29%;
  bottom: 15%;
  animation-delay: 1.45s;
}

.ln-6 {
  right: 8%;
  top: 53%;
  animation-delay: 1.8s;
}

@keyframes logicNodeFloat {
  50% {
    transform: translateY(-7px) scale(1.1);
    opacity: .78;
  }
}

@keyframes focusCardIn {
  from {
    opacity: 0;
    transform: translate(-50%,-46%) scale(.965);
  }

  to {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
  }
}

.hero-node-close {
  position: absolute;
  right: 15px;
  top: 13px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  color: #dce4f6;
  background: rgba(255,255,255,.055);
  font-size: 24px;
  cursor: pointer;
}

.hero-node-close:hover,
.hero-node-close:focus-visible {
  background: rgba(255,255,255,.11);
  color: #fff;
  outline: none;
}
@media (min-width: 761px) {
  .nav-item[data-menu]::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 18px;
  }

  .dropdown {
    top: calc(100% + 10px);
  }
}

@media (max-width: 1180px) {
  .node-visibility {
    left: calc(50% - 248px);
  }

  .node-audit {
    right: calc(50% - 248px);
  }
}

@media (max-width: 900px) {
  .node-visibility,
  .node-audit {
    bottom: auto;
  }
}

@media (max-width: 620px) {
}

@media (prefers-reduced-motion: reduce) {
}


/* ===== Hero final lock refinement — 2026-08-11 ===== */

@media (min-width: 761px) {
  .nav-shell {
    min-height: 70px;
  }
}

.wordmark-z {
  color: var(--white);
  text-shadow: none;
}

.wordmark-z .z-lights {
  display: none !important;
}

.node-open {
  display: none !important;
}

.node-inputs {
  top: 58px;
}

.node-data {
  top: 238px;
}

.node-documents {
  top: 418px;
}

.node-rules {
  top: 58px;
}

.node-approvals {
  top: 238px;
}

.node-actions {
  top: 418px;
}

.node-visibility {
  bottom: 2px;
}

.node-audit {
  bottom: 2px;
}

@media (min-width: 761px) {
  .nav-item[data-menu]::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 18px;
  }

  .dropdown {
    top: calc(100% + 10px);
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .node-visibility {
    left: calc(50% - 248px);
  }

  .node-audit {
    right: calc(50% - 248px);
  }
}

@media (max-width: 900px) {
  .node-visibility,
  .node-audit {
    bottom: auto;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
}


/* ===== Hero interaction discovery cue — 2026-08-11 ===== */

@media (max-width: 900px) {
}

@media (prefers-reduced-motion: reduce) {
}


/* ===== Hero chapter break + approved interactive copy closeout — 2026-08-11 ===== */

.workflow-contrast {
  position: relative;
  margin-top: 34px;
  padding-top: 104px;
  background:
    linear-gradient(
      180deg,
      rgba(6,13,28,.58) 0%,
      rgba(7,15,31,.30) 38%,
      rgba(7,15,31,.08) 100%
    );
  border-top: 1px solid rgba(171,188,224,.075);
}

.workflow-contrast::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(150,170,216,.10) 22%,
    rgba(150,170,216,.10) 78%,
    transparent
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .workflow-contrast {
    margin-top: 24px;
    padding-top: 82px;
  }
}

@media (max-width: 620px) {
  .workflow-contrast {
    margin-top: 18px;
    padding-top: 68px;
  }

  .workflow-contrast::before {
    width: calc(100% - 28px);
  }
}


/* ==========================================================
   AUGUST 12 HERO RESTORE — monitor-style approved reference
   ========================================================== */

@media (min-width: 901px) {
  .system-pulse {
    fill: #61b8ff;
    opacity: 1;
    filter: url(#heroFlowGlow);
  }

  .node-inputs {
    left: 0;
    top: 95px;
  }

  .node-data {
    left: 0;
    top: 275px;
  }

  .node-documents {
    left: 0;
    top: 455px;
  }

  .node-rules {
    right: 0;
    top: 95px;
  }

  .node-approvals {
    right: 0;
    top: 275px;
  }

  .node-actions {
    right: 0;
    top: 455px;
  }

  .node-visibility {
    left: calc(50% - 300px);
    bottom: 5px;
  }

  .node-audit {
    right: calc(50% - 300px);
    bottom: 5px;
  }

  @keyframes logicCorePulse {
    50% {
      transform: scale(1.08);
      opacity: .94;
    }
  }

  @keyframes monitorPanelIn {
    from {
      opacity: 0;
      transform: translateY(8px) scale(.985);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  .hero-node-close {
    width: 29px;
    height: 29px;
    right: 10px;
    top: 9px;
    font-size: 19px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .node-visibility {
    left: calc(50% - 265px);
  }

  .node-audit {
    right: calc(50% - 265px);
  }
}

@media (max-width: 900px) {
}


/* ==========================================================
   AUGUST 12 UAT CORRECTIONS
   ========================================================== */

@media (min-width: 901px) {
}

@media (min-width: 901px) and (max-width: 1180px) {
}

@media (max-width: 900px) {
}


/* ==========================================================
   AUGUST 12 PRECISION HERO RESTORE
   ========================================================== */

@media (min-width: 901px) {
  .system-hot {
    fill: none;
    stroke: #72c8ff;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-dasharray: 2 14 7 22;
    opacity: .80;
    animation: heroHotCurrent 2.4s linear infinite;
  }

  .system-hot.reverse {
    animation-direction: reverse;
    animation-duration: 2.8s;
  }

  @keyframes heroHotCurrent {
    to {
      stroke-dashoffset: -90;
    }
  }

  .system-junctions circle {
    fill: #71c9ff;
    opacity: .72;
    filter: url(#heroSoftGlow);
  }

  .system-pulse {
    fill: #6dc6ff;
    opacity: 1;
    filter: url(#heroFlowGlow);
  }

  .system-pulse.micro {
    fill: #a6efff;
    opacity: .9;
  }

  .node-inputs {
    left: 0;
    top: 95px;
  }

  .node-data {
    left: 0;
    top: 275px;
  }

  .node-documents {
    left: 0;
    top: 455px;
  }

  .node-rules {
    right: 0;
    top: 95px;
  }

  .node-approvals {
    right: 0;
    top: 275px;
  }

  .node-actions {
    right: 0;
    top: 455px;
  }

  .node-visibility {
    left: calc(50% - 300px);
    bottom: 5px;
  }

  .node-audit {
    right: calc(50% - 300px);
    bottom: 5px;
  }

  @keyframes localPanelIn {
    from {
      opacity: 0;
      transform: translateY(6px) scale(.985);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .node-visibility {
    left: calc(50% - 265px);
  }

  .node-audit {
    right: calc(50% - 265px);
  }
}

@media (max-width: 900px) {
  @keyframes mobilePanelIn {
    from {
      opacity: 0;
      transform: translateY(14px) !important;
    }

    to {
      opacity: 1;
      transform: none !important;
    }
  }
}


/* ==========================================================
   FINAL APPROVED HERO BUILD — 2026-08-12
   ========================================================== */

.wordmark-z {
  color: #5aa2ff;
  text-shadow: 0 0 12px rgba(54,121,255,.22);
}

.wordmark-z .z-lights {
  display: none !important;
}

@media (min-width: 901px) {
  .system-hot {
    stroke-width: 1.25;
    stroke-dasharray: 1 18 5 28;
    opacity: .62;
    filter: drop-shadow(0 0 2px rgba(100,203,255,.48));
  }

  .system-junctions circle {
    opacity: .82;
    filter: url(#heroSoftGlow);
  }

  .system-pulse {
    opacity: .94;
    filter: url(#heroFlowGlow);
  }

  .system-pulse.micro {
    opacity: .75;
  }

  .system-aux-link {
    fill: none;
    stroke: rgba(166,202,255,.40);
    stroke-width: .7;
    stroke-dasharray: 2 5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px rgba(82,142,255,.32));
  }

  .system-aux-junction {
    fill: #8edfff;
    opacity: .88;
    filter: url(#heroSoftGlow);
  }

  .node-inputs {
    left: 0;
    top: 92px;
  }

  .node-data {
    left: 0;
    top: 270px;
  }

  .node-documents {
    left: 0;
    top: 448px;
  }

  .node-rules {
    right: 0;
    top: 92px;
  }

  .node-approvals {
    right: 0;
    top: 270px;
  }

  .node-actions {
    right: 0;
    top: 448px;
  }

  .node-visibility {
    left: calc(50% - 300px);
    bottom: 2px;
  }

  .node-audit {
    right: calc(50% - 300px);
    bottom: 2px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .node-visibility {
    left: calc(50% - 265px);
  }

  .node-audit {
    right: calc(50% - 265px);
  }
}

@media (max-width: 900px) {
  .wordmark-z {
    color: #5aa2ff;
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
}


/* ==========================================================
   APPROVED PREVIEW MATCH — 2026-08-12
   ========================================================== */

@media (min-width: 901px) {
  .node-inputs {
    left: 0;
    top: 50px;
  }

  .node-data {
    left: 0;
    top: 210px;
  }

  .node-documents {
    left: 0;
    top: 370px;
  }

  .node-rules {
    right: 0;
    top: 50px;
  }

  .node-approvals {
    right: 0;
    top: 210px;
  }

  .node-actions {
    right: 0;
    top: 370px;
  }

  .node-visibility {
    left: calc(50% - 274px);
    bottom: 0;
  }

  .node-audit {
    right: calc(50% - 274px);
    bottom: 0;
  }

  .system-hot {
    stroke-width: 1.0;
    stroke-dasharray: 1 16 4 25;
    opacity: .72;
    filter: drop-shadow(0 0 2.4px rgba(115,218,255,.52));
  }

  .system-pulse {
    opacity: .94;
  }

  .system-pulse.micro {
    opacity: .82;
  }

  .system-junctions circle {
    opacity: .9;
  }

  .system-aux-link {
    stroke: rgba(168,205,255,.48);
    stroke-width: .72;
    stroke-dasharray: 2 5;
    opacity: .9;
  }

  .system-aux-junction {
    opacity: 1;
  }
}

@media (min-width: 901px) and (max-width: 1360px) {
  .node-inputs {
    top: 44px;
  }

  .node-data {
    top: 194px;
  }

  .node-documents {
    top: 344px;
  }

  .node-rules {
    top: 44px;
  }

  .node-approvals {
    top: 194px;
  }

  .node-actions {
    top: 344px;
  }

  .node-visibility {
    left: calc(50% - 250px);
  }

  .node-audit {
    right: calc(50% - 250px);
  }
}
/* ========================================================================== 
   ZORYNT HOME HERO — APPROVED ASSET, REFINED INTERACTION — 2026-08-12
   ========================================================================== */

.approved-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 26px;
  background: #020b1b;
  color: #fff;
}

.approved-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(24,58,135,.16), transparent 54%);
  pointer-events: none;
}

.approved-hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 28px, 1500px);
}

.approved-hero-heading {
  text-align: center;
  margin: 0 auto 10px;
}

.approved-hero-heading h1 {
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 790;
}

.approved-hero-heading p {
  margin: 13px auto 0;
  color: #c6cfe0;
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.45;
}

.approved-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1480px;
  aspect-ratio: 1592 / 660;
  margin: 0 auto;
  isolation: isolate;
}

.approved-hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.approved-arrow-mask {
  position: absolute;
  z-index: 4;
  width: 2.14%;
  aspect-ratio: 1;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(2,15,42,.995), rgba(1,10,31,.995));
  box-shadow: inset 0 0 9px rgba(26,59,119,.16);
  pointer-events: none;
}

.m-inputs,
.m-data,
.m-documents {
  left: 19.85%;
}

.m-rules,
.m-approvals,
.m-actions {
  left: 94.85%;
}

.m-inputs,
.m-rules {
  top: 9.24%;
}

.m-data,
.m-approvals {
  top: 32.58%;
}

.m-documents,
.m-actions {
  top: 57.12%;
}

.m-visibility {
  left: 43.78%;
  top: 84.09%;
}

.m-audit {
  left: 70.85%;
  top: 84.09%;
}

.approved-current {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.approved-current > path {
  fill: none;
  stroke: rgba(91, 183, 255, .24);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-dasharray: 2 18 5 28;
  filter: drop-shadow(0 0 3px rgba(74, 157, 255, .38));
  animation: approved-current-travel 7.5s linear infinite;
}

.approved-current > path:nth-of-type(2n) {
  animation-duration: 9s;
  animation-direction: reverse;
  opacity: .72;
}

.approved-current > path:nth-of-type(3n) {
  animation-duration: 6.8s;
}

.approved-pulses circle {
  fill: #9ceeff;
  opacity: .94;
}

@keyframes approved-current-travel {
  to {
    stroke-dashoffset: -160;
  }
}

.approved-hotspot {
  position: absolute;
  z-index: 6;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  padding: 0;
  transition:
    background .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
}

.approved-hotspot:hover,
.approved-hotspot:focus-visible,
.approved-hotspot.is-active {
  background: rgba(52, 91, 211, .045);
  box-shadow:
    inset 0 0 0 1px rgba(112, 159, 255, .48),
    0 0 26px rgba(48, 99, 238, .16);
  outline: none;
}

.approved-hotspot:focus-visible {
  box-shadow:
    inset 0 0 0 2px #8fcaff,
    0 0 28px rgba(65,126,255,.22);
}

.approved-hero-stage.has-selection .approved-hotspot:not(.is-active) {
  opacity: .70;
}

.hs-inputs,
.hs-data,
.hs-documents {
  left: 2.26%;
  width: 20.67%;
  height: 19.85%;
}

.hs-inputs {
  top: 2.27%;
}

.hs-data {
  top: 25.76%;
}

.hs-documents {
  top: 49.85%;
}

.hs-rules,
.hs-approvals,
.hs-actions {
  left: 77.14%;
  width: 20.67%;
  height: 19.85%;
}

.hs-rules {
  top: 2.27%;
}

.hs-approvals {
  top: 25.76%;
}

.hs-actions {
  top: 49.85%;
}

.hs-logic {
  left: 33.17%;
  top: 7.88%;
  width: 33.86%;
  height: 51.82%;
}

.hs-visibility {
  left: 25.75%;
  top: 76.52%;
  width: 21.10%;
  height: 20.15%;
}

.hs-audit {
  left: 52.64%;
  top: 76.52%;
  width: 21.23%;
  height: 20.15%;
}

.approved-popover {
  position: absolute;
  z-index: 15;
  width: min(310px, 28vw);
  padding: 17px 18px 19px;
  border-radius: 13px;
  border: 1px solid rgba(78, 121, 230, .82);
  background: linear-gradient(180deg, rgba(7,21,48,.99), rgba(4,15,35,.99));
  box-shadow:
    0 24px 58px rgba(0,0,0,.42),
    0 0 24px rgba(52,94,221,.15),
    inset 0 1px 0 rgba(255,255,255,.04);
  color: #fff;
  transform-origin: center;
  animation: approved-pop-in .16s ease-out;
}

.approved-popover[hidden] {
  display: none;
}

@keyframes approved-pop-in {
  from {
    opacity: 0;
    transform: translateY(5px) scale(.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.approved-popover-close {
  position: absolute;
  top: 8px;
  right: 11px;
  border: 0;
  background: transparent;
  color: #c7d0e4;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.approved-popover p {
  margin: 0 0 10px;
  color: #9db7ff;
  font-size: 11px;
  letter-spacing: .11em;
  font-weight: 750;
}

.approved-popover > strong {
  display: block;
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.15;
}

.approved-popover > span {
  display: block;
  color: #c6cede;
  font-size: 14px;
  line-height: 1.52;
}

@media (max-width: 900px) {
  .approved-hero {
    padding-top: 26px;
  }

  .approved-hero-shell {
    width: calc(100% - 18px);
  }

  .approved-hero-heading {
    text-align: left;
    padding: 0 6px;
    margin-bottom: 15px;
  }

  .approved-hero-heading h1 {
    font-size: clamp(39px, 8vw, 56px);
  }

  .approved-hero-heading p {
    margin-left: 0;
  }

  .approved-hero-stage {
    width: 1040px;
    max-width: none;
    margin-left: 0;
  }

  .approved-hero-shell {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  .approved-hotspot:hover {
    background: transparent;
    box-shadow: none;
  }

  .approved-popover {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    width: min(420px, calc(100vw - 28px));
    transform: translate(-50%,-50%);
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .approved-current > path {
    animation: none;
  }

  .approved-pulses {
    display: none;
  }
}


/* ========================================================================== 
   ZORYNT HOME HERO — FINAL APPROVED BUILD — 2026-08-12
   ========================================================================== */

.final-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 24px;
  background: #020b1b;
  color: #fff;
}

.final-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(28, 67, 150, .14), transparent 54%);
  pointer-events: none;
}

.final-hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 26px, 1580px);
  margin-inline: auto;
}

.final-hero-heading {
  text-align: center;
  margin: 0 auto 8px;
}

.final-hero-heading h1 {
  margin: 0;
  color: #f8faff;
  font-size: clamp(50px, 5.05vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 790;
}

.final-hero-heading p {
  margin: 12px auto 0;
  color: #c8d0df;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
}

.final-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1420px;
  aspect-ratio: 1592 / 660;
  margin: 0 auto;
  isolation: isolate;
}

.final-hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.final-current {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.final-current > path {
  fill: none;
  stroke: transparent;
}

.final-pulses circle {
  fill: #2f8cff;
  opacity: .78;
}

.final-pulses .final-secondary-pulse {
  fill: #47a0ff;
  opacity: .66;
}


.final-hotspot {
  position: absolute;
  z-index: 7;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 17px;
  transition:
    background .16s ease,
    box-shadow .16s ease,
    opacity .16s ease;
}

.final-hotspot:hover,
.final-hotspot:focus-visible,
.final-hotspot.is-active {
  background: rgba(54, 97, 220, .022);
  box-shadow:
    inset 0 0 0 1px rgba(126, 170, 255, .22),
    0 0 18px rgba(50, 108, 255, .08);
  outline: none;
}

.final-hotspot:focus-visible {
  box-shadow:
    inset 0 0 0 2px #8fd7ff,
    0 0 20px rgba(50,120,255,.14);
}

.final-hero-stage.has-selection .final-hotspot:not(.is-active) {
  opacity: .84;
}

.fh-inputs,
.fh-data,
.fh-documents {
  left: 2.18%;
  width: 20.66%;
  height: 19.9%;
}

.fh-inputs {
  top: 2.1%;
}

.fh-data {
  top: 26.0%;
}

.fh-documents {
  top: 50.2%;
}

.fh-rules,
.fh-approvals,
.fh-actions {
  left: 77.18%;
  width: 20.66%;
  height: 19.9%;
}

.fh-rules {
  top: 2.1%;
}

.fh-approvals {
  top: 26.0%;
}

.fh-actions {
  top: 50.2%;
}

.fh-logic {
  left: 33.08%;
  top: 7.9%;
  width: 33.84%;
  height: 52.2%;
}

.fh-visibility {
  left: 25.69%;
  top: 76.5%;
  width: 21.02%;
  height: 20.2%;
}

.fh-audit {
  left: 52.58%;
  top: 76.5%;
  width: 21.24%;
  height: 20.2%;
}

.final-popover {
  position: absolute;
  z-index: 20;
  width: min(330px, 29vw);
  padding: 18px 19px 20px;
  border-radius: 14px;
  border: 1px solid rgba(79, 130, 235, .78);
  background: linear-gradient(180deg, rgba(8, 24, 54, .988), rgba(4, 15, 35, .992));
  box-shadow:
    0 20px 48px rgba(0,0,0,.42),
    0 0 22px rgba(54,104,228,.13),
    inset 0 1px 0 rgba(255,255,255,.035);
  color: #fff;
  animation: final-pop-in .15s ease-out;
}

.final-popover[hidden] {
  display: none;
}

@keyframes final-pop-in {
  from {
    opacity: 0;
    transform: translateY(4px) scale(.989);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.final-popover-close {
  position: absolute;
  top: 8px;
  right: 11px;
  border: 0;
  background: transparent;
  color: #c9d2e5;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.final-popover p {
  margin: 0 0 10px;
  color: #91b0ff;
  font-size: 11px;
  letter-spacing: .11em;
  font-weight: 760;
}

.final-popover > strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.final-popover > span {
  display: block;
  color: #c8d0df;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .final-hero {
    padding-top: 22px;
  }

  .final-hero-shell {
    width: calc(100% - 16px);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  .final-hero-heading {
    text-align: left;
    padding: 0 6px;
    margin-bottom: 13px;
  }

  .final-hero-heading h1 {
    font-size: clamp(39px, 8vw, 56px);
  }

  .final-hero-heading p {
    margin-left: 0;
  }

  .final-hero-stage {
    width: 1040px;
    max-width: none;
    margin-left: 0;
  }

  .final-hotspot:hover {
    background: transparent;
    box-shadow: none;
  }

  .final-popover {
    width: min(330px, 30vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-pulses {
    display: none;
  }
}


/* ===== Aug 13, 2026: approved hero copy cleanup + UAT title-mask fix ===== */


.final-core-pulse {
  position: absolute;
  z-index: 3;
  left: 50.00%;
  top: 35.15%;
  width: 4.65%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(145, 232, 255, .72);
  box-shadow:
    0 0 11px rgba(83, 205, 255, .30),
    0 0 24px rgba(54, 113, 255, .20);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.84);
  opacity: 0;
  animation: final-core-breathe 4.4s ease-out infinite;
}

@keyframes final-core-breathe {
  0%, 18% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.84);
  }

  32% {
    opacity: .58;
  }

  66% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(1.26);
  }

  78%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-core-pulse {
    display: none;
  }
}
/* ========================================================================== 
   ZORYNT HOME — RESEARCH-BASED CANVAS + TYPOGRAPHY CLEANUP — 2026-08-24

   Architecture:
   - body owns the single #061225 page canvas
   - ordinary homepage sections do not repaint their own rectangles
   - full-width divider lines are removed
   - embedded iframe documents are corrected at their own source
   - Existing Systems copy is balanced without shrinking the font
   - approved Hero geometry and interaction remain intact
   ========================================================================== */

body[data-page="home"] {
  background: #061225 !important;
  color: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
}

body[data-page="home"] :where(
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  a,
  button,
  span,
  li,
  strong,
  em,
  small,
  label
) {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
}


/* --------------------------------------------------------------------------
   ONE CANVAS: BODY PAINTS THE PAGE; SECTIONS STOP PAINTING RECTANGLES
   -------------------------------------------------------------------------- */

body[data-page="home"] main,
body[data-page="home"] main > section,
body[data-page="home"] .final-hero,
body[data-page="home"] .about-home,
body[data-page="home"] #orchestration,
body[data-page="home"] .workflow-contrast,
body[data-page="home"] .zorynt-capability-section,
body[data-page="home"] .zorynt-capability-visual,
body[data-page="home"] #ai-agents,
body[data-page="home"] #data-intelligence,
body[data-page="home"] #systems-integration,
body[data-page="home"] .systems-approved-stage,
body[data-page="home"] .systems-approved-stage__canvas,
body[data-page="home"] .existing-systems,
body[data-page="home"] .site-footer,
body[data-page="home"] .footer-tech-field,
body[data-page="home"] .footer-close {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}


/* Header stays readable while remaining in the same navy family. */

body[data-page="home"] .site-header {
  background: rgba(6,18,37,.94) !important;
  background-image: none !important;
}


/* Remove full-width chapter and divider lines that visually box the page. */

body[data-page="home"] .workflow-contrast,
body[data-page="home"] .existing-systems,
body[data-page="home"] .site-footer {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body[data-page="home"] .workflow-contrast::before,
body[data-page="home"] .final-hero::before,
body[data-page="home"] .site-footer::before {
  content: none !important;
  display: none !important;
}


/* The iframe element can only provide a fallback behind its own document. */

body[data-page="home"] #ai-agents-approved-frame,
body[data-page="home"] #data-intelligence-approved-frame,
body[data-page="home"] #systems-approved-frame {
  background: #061225 !important;
  background-color: #061225 !important;
  border: 0 !important;
}


/* --------------------------------------------------------------------------
   HERO — FULL FIRST-SCREEN PRESENCE
   Approved artwork and interaction remain unchanged.
   One Zorynt midnight-navy canvas + one restrained horizon glow.
   -------------------------------------------------------------------------- */

body[data-page="home"] .final-hero {
  position: relative !important;
  isolation: isolate !important;

  min-height: calc(100svh - 70px) !important;

  margin: 0 !important;

  padding:
  clamp(24px, 2vw, 34px)
  0
  clamp(34px, 3vw, 48px) !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  overflow-x: clip !important;
  overflow-y: visible !important;
}


/* Remove the older Hero wash so #061225 remains the single page canvas. */

body[data-page="home"] .final-hero::before {
  content: none !important;
  display: none !important;
}


/* Restrained Zorynt-blue horizon glow.
   No border. No line. No second background.
   Used only at the Hero transition. */

body[data-page="home"] .final-hero::after {
  content: "" !important;

  position: absolute !important;
  left: 50% !important;
  bottom: -1px !important;
  z-index: 0 !important;

  width: calc(100% - 8px) !important;
  height: 72px !important;

  transform: translateX(-50%) !important;

  background:
    linear-gradient(
      90deg,
      rgba(47,140,255,0) 0%,
      rgba(47,140,255,.035) 12%,
      rgba(47,140,255,.07) 50%,
      rgba(47,140,255,.035) 88%,
      rgba(47,140,255,0) 100%
    ) !important;

  border-left: 1px solid rgba(80,155,255,.24) !important;
  border-right: 1px solid rgba(80,155,255,.24) !important;
  border-bottom: 1px solid rgba(80,155,255,.34) !important;

  border-radius: 0 0 6px 6px !important;

  box-shadow:
    inset 0 -1px 0 rgba(150,195,255,.14),
    0 5px 16px rgba(47,140,255,.08),
    0 12px 34px -18px rgba(47,140,255,.48) !important;

  opacity: .68 !important;
  pointer-events: none !important;

  animation:
    zoryntHeroHorizonGlow
    6.8s
    ease-in-out
    infinite !important;
}

@keyframes zoryntHeroHorizonGlow {
  0%,
  100% {
    opacity: .56;
    transform: translateX(-50%);
  }

  50% {
    opacity: .82;
    transform: translateX(-50%);
  }
}

body[data-page="home"] .final-hero-shell {
  position: relative !important;
  z-index: 1 !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 auto !important;
  padding: 0 !important;

  background: transparent !important;
}


/* Hero wording stays visually part of the same canvas. */

body[data-page="home"] .final-hero-heading {
  width: min(100% - 40px, 1540px) !important;
  max-width: 1540px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  box-shadow: none !important;
}


body[data-page="home"] #final-hero-title {
  margin: 0 !important;

  color: #fff !important;

  font-size:
   clamp(46px, 4.3vw, 66px) !important;

  line-height: .98 !important;

  font-weight: 650 !important;

  letter-spacing: -.045em !important;

  text-align: center !important;
}


body[data-page="home"] .final-hero-instruction {
  margin:
    11px
    auto
    0 !important;

  color: #fff !important;

  font-size:
    clamp(16px, 1.08vw, 18px) !important;

  line-height: 1.42 !important;

  font-weight: 500 !important;

  text-align: center !important;

  background: transparent !important;
}


/* Give the approved workflow artwork the visual presence of the first screen.
   Aspect ratio remains unchanged — no stretching and no cropping. */

body[data-page="home"] .final-hero-stage {
  position: relative !important;
  z-index: 1 !important;

  width:
    min(
      1860px,
      calc(100vw - 16px)
    ) !important;

  max-width: none !important;

  aspect-ratio: 1592 / 660 !important;

  margin:
    clamp(20px, 1.8vw, 30px)
    auto
    0 !important;

  padding: 0 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;

  box-shadow: none !important;

  overflow: visible !important;

  isolation: isolate !important;
}


body[data-page="home"] .final-hero-stage::before,
body[data-page="home"] .final-hero-stage::after {
  content: none !important;
  display: none !important;
}


body[data-page="home"] .final-hero-art {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;

  background: transparent !important;

  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;

  box-shadow: none !important;

  user-select: none !important;
  pointer-events: none !important;
}


/* Existing electrical signal layer remains aligned to the approved artwork. */

body[data-page="home"] .final-current {
  position: absolute !important;

  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  pointer-events: none !important;
}


/* Accessibility: keep the horizon treatment static when motion is reduced. */

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .final-hero::after {
    animation: none !important;

    opacity: .58 !important;

    transform:
      translateX(-50%)
      scaleX(1) !important;
  }
}


/* --------------------------------------------------------------------------
   EDITORIAL TYPOGRAPHY
   -------------------------------------------------------------------------- */

body[data-page="home"] #about-home-title,
body[data-page="home"] #orchestration .zorynt-primary-heading,
body[data-page="home"] #existing-systems-title {
  color: #fff !important;
  font-size: clamp(44px,3.65vw,56px) !important;
  line-height: 1.02 !important;
  font-weight: 650 !important;
  letter-spacing: -.035em !important;
}

body[data-page="home"] .about-home__copy > p:first-child,
body[data-page="home"] .about-home__copy-group h3,
body[data-page="home"] #orchestration .section-intro h3,
body[data-page="home"] .existing-systems__principle strong {
  color: #fff !important;
}

body[data-page="home"] .lead,
body[data-page="home"] .body-copy,
body[data-page="home"] .about-home__copy p,
body[data-page="home"] .about-home__copy-group p,
body[data-page="home"] .existing-systems__copy,
body[data-page="home"] .final-hero-instruction,
body[data-page="home"] .footer-tech-item,
body[data-page="home"] .footer-copyright {
  color: rgba(255,255,255,.92) !important;
}


/* --------------------------------------------------------------------------
   EXISTING SYSTEMS — REMOVE BOX LINES + BALANCE THE WRITING
   -------------------------------------------------------------------------- */

body[data-page="home"] #existing-systems-title {
  max-width: 16ch !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

body[data-page="home"] .existing-systems__content {
  max-width: 590px !important;
}

body[data-page="home"] .existing-systems__copy {
  max-width: 38ch !important;
  margin: clamp(26px,2.5vw,36px) 0 0 !important;
  font-size: clamp(17px,1.14vw,19px) !important;
  line-height: 1.58 !important;
  font-weight: 500 !important;
  letter-spacing: -.008em !important;
  text-wrap: balance !important;
}


/* Remove the row rules. Spacing carries the hierarchy instead of lines. */

body[data-page="home"] .existing-systems__principle,
body[data-page="home"] .existing-systems__principle:first-child {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body[data-page="home"] .existing-systems__principles {
  gap: clamp(14px,1.4vw,22px) !important;
}

body[data-page="home"] .existing-systems__principle {
  padding: 8px 0 !important;
}

body[data-page="home"] .existing-systems__principle-copy {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: start !important;
  max-width: 36ch !important;
}

body[data-page="home"] .existing-systems__principle strong {
  grid-column: 1 !important;
  font-size: clamp(17px,1.2vw,20px) !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: -.015em !important;
}

body[data-page="home"] .existing-systems__principle span:not(.existing-systems__number) {
  grid-column: 1 !important;
  max-inline-size: 34ch !important;
  margin-top: 6px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: clamp(15px,1vw,17px) !important;
  line-height: 1.48 !important;
  font-weight: 500 !important;
  letter-spacing: -.006em !important;
  text-wrap: balance !important;
}


/* Keep artwork itself untouched here.
   Its baked canvas must be corrected in the PNG source. */

body[data-page="home"] .systems-map {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* --------------------------------------------------------------------------
   BRAND Z
   -------------------------------------------------------------------------- */

body[data-page="home"] .wordmark-z,
body[data-page="home"] .brand-z {
  color: #2f8cff !important;
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width:900px) {
  body[data-page="home"] .final-hero {
    overflow-x: hidden !important;
  }

  body[data-page="home"] .final-hero-shell {
    width: calc(100% - 16px) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  body[data-page="home"] .final-hero-heading {
    width: 100% !important;
    padding-inline: 6px !important;
    text-align: left !important;
  }

  body[data-page="home"] #final-hero-title,
  body[data-page="home"] .final-hero-instruction {
    text-align: left !important;
  }

  body[data-page="home"] .final-hero-stage {
    width: 1040px !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body[data-page="home"] .existing-systems__copy {
    max-width: 36ch !important;
  }
}

@media (max-width:720px) {
  body[data-page="home"] #existing-systems-title {
    font-size: clamp(36px,11vw,46px) !important;
  }

  body[data-page="home"] .existing-systems__principle span:not(.existing-systems__number) {
    font-size: 15px !important;
    max-inline-size: 30ch !important;
  }
}


/* ==========================================================================
   ORCHESTRATION — AUGUST 28, 2026 — COMPONENT-LAYER REBUILD
   Exact approved source artwork is separated into real visual elements so the
   named item itself can move/glow. No flashlight regions, no coordinate masks,
   no replacement wire drawing, no arrows, and no second waveform.
   ========================================================================== */

body[data-page="home"] #orchestration.orchestration-home {
  position:relative!important;isolation:isolate!important;width:100%!important;
  min-height:min(88vh,900px)!important;margin:0!important;padding:0!important;
  overflow:hidden!important;background:#061225!important;border:0!important;box-shadow:none!important;
}
body[data-page="home"] #orchestration .orchestration-home__inner{width:100%!important;margin:0!important;padding:clamp(56px,4.8vw,78px) 0 clamp(24px,2.2vw,38px)!important;}
body[data-page="home"] #orchestration .orchestration-home__heading-shell{position:relative!important;z-index:4!important;width:min(100%,var(--max))!important;margin-inline:auto!important;padding-inline:var(--gutter)!important;}
body[data-page="home"] #orchestration #orchestration-title{margin:0!important;color:#fff!important;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;font-size:clamp(44px,3.65vw,56px)!important;line-height:1!important;font-weight:650!important;letter-spacing:-.035em!important;text-transform:uppercase!important;text-shadow:0 -1px 0 rgba(255,255,255,.22),0 0 8px rgba(255,255,255,.12),0 0 18px rgba(255,255,255,.045)!important;}

body[data-page="home"] #orchestration .orchestration-stage{position:relative;width:min(100vw,1672px);max-width:1672px;margin:clamp(5px,.5vw,9px) auto 0;background:#061225;overflow:visible;}
body[data-page="home"] #orchestration .orchestration-stage__fallback{display:block;width:100%;height:auto;aspect-ratio:1672/841;object-fit:contain;opacity:1;transition:opacity .18s ease;}
body[data-page="home"] #orchestration .orchestration-stage__live{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .18s ease;}
body[data-page="home"] #orchestration .orchestration-stage.is-ready .orchestration-stage__live{opacity:1;}
body[data-page="home"] #orchestration .orchestration-stage.is-ready .orchestration-stage__fallback{opacity:0;}

body[data-page="home"] #orchestration .orchestration-stage__top{position:relative;width:100%;aspect-ratio:1672/676;overflow:visible;background:#061225;}
body[data-page="home"] #orchestration .orchestration-stage__base,
body[data-page="home"] #orchestration .orchestration-stage__current{position:absolute;inset:0;width:100%;height:100%;object-fit:fill;display:block;user-select:none;pointer-events:none;}
body[data-page="home"] #orchestration .orchestration-stage__base{z-index:1;}
body[data-page="home"] #orchestration .orchestration-stage__current{z-index:2;opacity:.74;filter:brightness(1.06) saturate(1.08) drop-shadow(0 0 2px rgba(54,149,255,.25));animation:orchestrationCurrentIdle 5.8s ease-in-out infinite;}
body[data-page="home"] #orchestration .orchestration-stage.is-routing .orchestration-stage__current{opacity:1;filter:brightness(1.32) saturate(1.20) drop-shadow(0 0 5px rgba(55,171,255,.58)) drop-shadow(0 0 12px rgba(30,113,255,.28));}
body[data-page="home"] #orchestration .orchestration-stage.is-harmony .orchestration-stage__current{filter:brightness(1.42) saturate(1.22) drop-shadow(0 0 6px rgba(81,198,255,.68)) drop-shadow(0 0 15px rgba(32,126,255,.33));}
@keyframes orchestrationCurrentIdle{0%,100%{opacity:.64;filter:brightness(1.03) saturate(1.05) drop-shadow(0 0 2px rgba(54,149,255,.20))}50%{opacity:.84;filter:brightness(1.14) saturate(1.12) drop-shadow(0 0 4px rgba(62,177,255,.34))}}

body[data-page="home"] #orchestration .orchestration-stage__sources,
body[data-page="home"] #orchestration .orchestration-stage__steps{position:absolute;inset:0;z-index:3;pointer-events:none;}
body[data-page="home"] #orchestration .orchestration-source{position:absolute;display:block;animation:orchestrationFloat var(--float-dur) ease-in-out var(--float-delay) infinite alternate;transform-origin:center;will-change:transform;}
body[data-page="home"] #orchestration .orchestration-source__art{display:block;width:100%;height:100%;transform-origin:center;transition:filter .45s cubic-bezier(.2,.72,.25,1),transform .45s cubic-bezier(.2,.72,.25,1);filter:brightness(1.09) contrast(1.025) saturate(1.04);}
body[data-page="home"] #orchestration .orchestration-source svg,
body[data-page="home"] #orchestration .orchestration-step-overlay svg{display:block;width:100%;height:100%;overflow:visible;}
body[data-page="home"] #orchestration .orchestration-source.is-active .orchestration-source__art{transform:scale(1.025);filter:brightness(1.34) contrast(1.05) saturate(1.20) drop-shadow(0 0 6px rgba(106,221,255,.68)) drop-shadow(0 0 15px rgba(34,137,255,.46)) drop-shadow(0 0 28px rgba(34,103,255,.24));}
@keyframes orchestrationFloat{0%{transform:translate3d(calc(var(--float-x) * -.45),calc(var(--float-y) * .45),0) rotate(-.18deg)}50%{transform:translate3d(calc(var(--float-x) * .35),calc(var(--float-y) * -.65),0) rotate(.18deg)}100%{transform:translate3d(var(--float-x),calc(var(--float-y) * .30),0) rotate(-.10deg)}}

body[data-page="home"] #orchestration .orchestration-step-overlay{position:absolute;display:block;z-index:1;opacity:.075;mix-blend-mode:screen;transform-origin:center;filter:brightness(1.08) saturate(1.06);animation:orchestrationStepIdle 5.6s ease-in-out var(--step-delay) infinite;transition:opacity .38s ease,filter .38s ease,transform .38s ease;}
body[data-page="home"] #orchestration .orchestration-step-overlay.is-active{opacity:.98;animation:none;transform:scale(1.012);filter:brightness(1.34) saturate(1.24) drop-shadow(0 0 5px rgba(108,224,255,.55)) drop-shadow(0 0 16px rgba(36,129,255,.42));}
body[data-page="home"] #orchestration .orchestration-stage.is-harmony .orchestration-step-overlay{opacity:.28;filter:brightness(1.16) saturate(1.12) drop-shadow(0 0 5px rgba(72,178,255,.26));}
@keyframes orchestrationStepIdle{0%,100%{opacity:.045}50%{opacity:.12}}

body[data-page="home"] #orchestration .orchestration-stage__glints{position:absolute;inset:0;z-index:5;width:100%;height:100%;pointer-events:none;overflow:visible;}
body[data-page="home"] #orchestration .orchestration-glint-paths path{fill:none;stroke:none;}
body[data-page="home"] #orchestration .orchestration-glint{fill:#aaf6ff;opacity:0;transition:opacity .18s ease;}
body[data-page="home"] #orchestration .orchestration-glint.is-active{opacity:.95;}
body[data-page="home"] #orchestration .orchestration-stage.is-harmony .orchestration-glint.is-active{opacity:.62;}

body[data-page="home"] #orchestration .orchestration-voice{position:relative;width:100%;aspect-ratio:1672/165;background:linear-gradient(180deg,#061225 0%,#061225 72%,#051020 100%);overflow:visible;}
body[data-page="home"] #orchestration .orchestration-voice__nia{position:absolute;left:7.55%;top:-18%;width:9.1%;aspect-ratio:1;display:block;z-index:3;filter:drop-shadow(0 0 7px rgba(64,169,255,.38)) drop-shadow(0 0 18px rgba(44,112,255,.20));transition:filter .35s ease;}
body[data-page="home"] #orchestration .orchestration-stage.is-playing .orchestration-voice__nia{filter:drop-shadow(0 0 8px rgba(97,215,255,.55)) drop-shadow(0 0 20px rgba(44,125,255,.30));}
body[data-page="home"] #orchestration .orchestration-voice__nia svg{display:block;width:100%;height:100%;}

body[data-page="home"] #orchestration .orchestration-wave{position:absolute;left:17.8%;right:16.45%;top:14%;height:55%;display:flex;align-items:center;justify-content:space-between;gap:0;overflow:visible;}
body[data-page="home"] #orchestration .orchestration-wave i{display:block;width:2px;min-width:1px;border-radius:999px;background:linear-gradient(180deg,#60d9ff,#1e79ff);box-shadow:0 0 4px rgba(37,147,255,.42);transform-origin:center;transition:height .08s linear,opacity .12s ease;}

body[data-page="home"] #orchestration .orchestration-home__play{position:absolute;right:9.25%;top:11%;width:5.45%;aspect-ratio:1;display:grid;place-items:center;margin:0;padding:0;border:2px solid #2180ff;border-radius:50%;background:rgba(3,12,28,.72);color:#fff;box-shadow:0 0 12px rgba(36,124,255,.20),inset 0 0 18px rgba(35,106,255,.08);cursor:pointer;pointer-events:auto;z-index:5;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;}
body[data-page="home"] #orchestration .orchestration-home__play:hover,body[data-page="home"] #orchestration .orchestration-home__play:focus-visible{border-color:#65d9ff;box-shadow:0 0 14px rgba(75,184,255,.40),0 0 28px rgba(34,111,255,.20);outline:none;}
body[data-page="home"] #orchestration .orchestration-home__play-icon{display:block;width:31%;height:auto;margin-left:5%;}
body[data-page="home"] #orchestration .orchestration-home__pause-icon{display:none;font-size:clamp(18px,1.55vw,25px);font-weight:760;line-height:1;letter-spacing:-.18em;transform:translateX(-.08em);}
body[data-page="home"] #orchestration .orchestration-home__play.is-playing .orchestration-home__play-icon{display:none;}
body[data-page="home"] #orchestration .orchestration-home__play.is-playing .orchestration-home__pause-icon{display:block;}

@media(max-width:900px){body[data-page="home"] #orchestration.orchestration-home{min-height:auto!important}body[data-page="home"] #orchestration .orchestration-home__inner{padding-top:54px!important;padding-bottom:28px!important}body[data-page="home"] #orchestration #orchestration-title{font-size:40px!important}body[data-page="home"] #orchestration .orchestration-stage{width:100vw}body[data-page="home"] #orchestration .orchestration-wave i{width:1.5px}}
@media(prefers-reduced-motion:reduce){body[data-page="home"] #orchestration .orchestration-source,body[data-page="home"] #orchestration .orchestration-step-overlay,body[data-page="home"] #orchestration .orchestration-stage__current{animation:none!important}body[data-page="home"] #orchestration .orchestration-source__art{transform:none!important}body[data-page="home"] #orchestration .orchestration-glint{display:none!important}}


/* ========================================================================== 
   ZORYNT HERO — CURRENT REFINEMENT — AUGUST 28, 2026
   Motion only. Approved artwork/composition remains untouched.
   No cover masks, no replacement wire network, no extra arrows.
   ========================================================================== */

/* The approved PNG supplies the full electrical wiring. These paths are the
   same route geometry already used by the tiny signal dots; they now act as
   narrow moving current inside the existing wire bundles. */
body[data-page="home"] .final-current-route{
  fill:none!important;
  stroke:#9ceeff!important;
  stroke-width:1.22!important;
  stroke-linecap:round!important;
  stroke-dasharray:118 430!important;
  stroke-dashoffset:0;
  opacity:.38!important;
  filter:
    drop-shadow(0 0 2px rgba(156,238,255,.74))
    drop-shadow(0 0 6px rgba(47,140,255,.34))!important;
  vector-effect:non-scaling-stroke;
  animation:heroExistingCurrent 6.9s linear infinite!important;
  transition:
    opacity .18s ease,
    stroke-width .18s ease,
    filter .18s ease;
}
body[data-page="home"] .final-current-route:nth-of-type(2n){animation-duration:7.8s!important;animation-delay:-1.1s!important;}
body[data-page="home"] .final-current-route:nth-of-type(3n){animation-duration:6.2s!important;animation-delay:-2.15s!important;}
body[data-page="home"] .final-current-route:nth-of-type(4n){animation-delay:-3.05s!important;}
body[data-page="home"] .final-current-route[data-hero-route="ambient"]{
  stroke:#6cc8ff!important;
  stroke-width:.9!important;
  stroke-dasharray:72 510!important;
  opacity:.22!important;
  animation-duration:8.8s!important;
}
@keyframes heroExistingCurrent{
  to{stroke-dashoffset:-1096;}
}

/* Existing moving dots stay as secondary signals rather than the primary motion. */
body[data-page="home"] .final-pulses circle{
  opacity:.55!important;
  filter:drop-shadow(0 0 4px rgba(90,188,255,.58));
}
body[data-page="home"] .final-pulses .final-secondary-pulse{opacity:.38!important;}

/* Selected component: energize its real route and wake the core. */
body[data-page="home"] .final-current-route.is-route-focus{
  stroke:#d7fbff!important;
  stroke-width:1.8!important;
  stroke-dasharray:168 292!important;
  opacity:1!important;
  filter:
    drop-shadow(0 0 3px rgba(215,251,255,.94))
    drop-shadow(0 0 9px rgba(62,165,255,.72))
    drop-shadow(0 0 16px rgba(47,105,255,.28))!important;
  animation-duration:2.05s!important;
}
body[data-page="home"] .final-hotspot.is-motion-focus,
body[data-page="home"] .final-hotspot.is-active{
  background:rgba(48,104,255,.025)!important;
  box-shadow:
    inset 0 0 0 1px rgba(134,205,255,.40),
    0 0 20px rgba(47,140,255,.12)!important;
}

/* Replace the old disappearing ring with a calm intelligent-core presence. */
body[data-page="home"] .final-core-pulse{
  z-index:3!important;
  left:50%!important;
  top:35.15%!important;
  width:5.7%!important;
  aspect-ratio:1!important;
  border-radius:50%!important;
  border:1px solid rgba(132,224,255,.38)!important;
  background:radial-gradient(
    circle,
    rgba(218,251,255,.12) 0 16%,
    rgba(79,187,255,.08) 28%,
    rgba(47,112,255,.035) 48%,
    transparent 69%
  )!important;
  box-shadow:
    0 0 10px rgba(107,221,255,.20),
    0 0 25px rgba(47,140,255,.13)!important;
  opacity:.58!important;
  transform:translate(-50%,-50%) scale(.94)!important;
  animation:heroCoreQuiet 5.8s ease-in-out infinite!important;
}
body[data-page="home"] .final-core-pulse::before,
body[data-page="home"] .final-core-pulse::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
body[data-page="home"] .final-core-pulse::before{
  inset:-24%;
  border:1px solid rgba(95,188,255,.17);
  animation:heroCoreOrbitBreath 7.2s ease-in-out infinite;
}
body[data-page="home"] .final-core-pulse::after{
  inset:23%;
  background:radial-gradient(circle,rgba(230,255,255,.32),rgba(80,204,255,.10) 44%,transparent 72%);
  box-shadow:0 0 12px rgba(108,224,255,.22);
}
body[data-page="home"] .final-hero-stage.is-core-focus .final-core-pulse{
  opacity:.92!important;
  border-color:rgba(200,249,255,.72)!important;
  box-shadow:
    0 0 12px rgba(183,244,255,.46),
    0 0 31px rgba(47,140,255,.30)!important;
  transform:translate(-50%,-50%) scale(1.035)!important;
}
@keyframes heroCoreQuiet{
  0%,100%{opacity:.48;transform:translate(-50%,-50%) scale(.94);}
  50%{opacity:.67;transform:translate(-50%,-50%) scale(1.015);}
}
@keyframes heroCoreOrbitBreath{
  0%,100%{opacity:.28;transform:scale(.96);}
  50%{opacity:.62;transform:scale(1.035);}
}

/* Give current movement a brief visual lead before the approved information
   panel settles in. Copy, placement and interaction logic remain unchanged. */
body[data-page="home"] .final-hero-stage.is-hero-routing .final-popover{
  animation:final-pop-in .18s ease-out .12s both!important;
}

@media(prefers-reduced-motion:reduce){
  body[data-page="home"] .final-current-route{
    animation:none!important;
    opacity:.18!important;
  }
  body[data-page="home"] .final-current-route.is-route-focus{
    opacity:.48!important;
  }
  body[data-page="home"] .final-core-pulse,
  body[data-page="home"] .final-core-pulse::before{
    animation:none!important;
  }
}


/* ========================================================================== 
   CONTACT HEADER — LAUNCH CLEANUP — AUGUST 28, 2026
   When Contact is the active page, remove the legacy Leave a Review header
   destination. This does not change the homepage navigation or page content.
   ========================================================================== */
.primary-nav a[href="contact.html"][aria-current="page"] ~ a[href="leave-a-review.html"],
.primary-nav a[data-contact-link][aria-current="page"] ~ a[data-review-link]{
  display:none!important;
}

/* Governance & Compliance — approved uploaded artwork integration */
.gc-approved-section{
  position:relative;
  margin:0;
  padding:0;
  overflow:hidden;
  background:#061225;
  color:#fff;
}
.gc-approved-grid{
  display:grid;
  grid-template-columns:minmax(430px,.79fr) minmax(650px,1.21fr);
  gap:clamp(34px,3.4vw,56px);
  align-items:center;
  padding-top:clamp(84px,6.2vw,104px);
  padding-bottom:clamp(84px,6.2vw,104px);
}
.gc-approved-copy{max-width:610px}
.gc-approved-copy h2{
  margin:0;
  color:#fff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:clamp(44px,3.65vw,56px);
  line-height:1;
  font-weight:650;
  letter-spacing:-.035em;
  text-transform:uppercase;
  opacity:1;
  text-shadow:
    0 -1px 0 rgba(255,255,255,.22),
    0 0 9px rgba(255,255,255,.10),
    0 0 20px rgba(255,255,255,.045);
}
.gc-approved-lead{
  max-width:35ch;
  margin:28px 0 0;
  color:#fff;
  font-size:clamp(20px,1.42vw,24px);
  line-height:1.45;
  font-weight:580;
  letter-spacing:-.015em;
}
.gc-approved-body{
  max-width:45ch;
  margin:16px 0 0;
  color:#fff;
  font-size:clamp(17px,1.14vw,18px);
  line-height:1.60;
  font-weight:500;
  letter-spacing:-.008em;
}
.gc-approved-principles{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 28px;
  margin-top:34px;
}
.gc-approved-principle{
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:13px;
  align-items:start;
  min-width:0;
}
.gc-approved-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-left:1px solid rgba(61,154,255,.75);
}
.gc-approved-icon svg{
  width:36px;
  height:36px;
  fill:none;
  stroke:#4ca7ff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 0 5px rgba(49,145,255,.28));
}
.gc-approved-principle strong{
  display:block;
  margin:1px 0 5px;
  color:#fff;
  font-size:clamp(16px,1.04vw,18px);
  line-height:1.25;
  font-weight:680;
  letter-spacing:-.012em;
  text-shadow:0 -1px 0 rgba(255,255,255,.14),0 0 7px rgba(255,255,255,.05);
}
.gc-approved-principle small{
  display:block;
  color:#fff;
  opacity:.82;
  font-size:clamp(14px,.94vw,16px);
  line-height:1.45;
  font-weight:500;
}
.gc-approved-visual{
  position:relative;
  width:min(100%,900px);
  justify-self:end;
  margin-left:0;
  transform:translateX(clamp(8px,1vw,14px));
  isolation:isolate;
}
.gc-approved-visual::before{
  content:"";
  position:absolute;
  inset:10% 8% 4%;
  z-index:0;
  background:radial-gradient(ellipse at center,rgba(43,130,255,.12),rgba(6,18,37,0) 72%);
  filter:blur(7px);
  animation:gcApprovedAmbient 7.6s ease-in-out infinite;
}
.gc-approved-ambient{
  position:absolute;
  z-index:1;
  left:50%;
  bottom:9%;
  width:44%;
  height:12%;
  transform:translateX(-50%);
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(159,231,255,.16),rgba(46,139,255,.07) 40%,transparent 72%);
  filter:blur(4px);
  animation:gcApprovedBase 6.8s ease-in-out infinite;
}
.gc-approved-visual img{
  will-change:filter,transform;
  position:relative;
  z-index:2;
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  user-select:none;
  pointer-events:none;
  filter:brightness(1.005) drop-shadow(0 0 14px rgba(38,129,255,.08));
  animation:gcApprovedArtwork 8.4s ease-in-out infinite;
}
@keyframes gcApprovedAmbient{
  0%,100%{opacity:.55;transform:scale(.985)}
  50%{opacity:.9;transform:scale(1.025)}
}
@keyframes gcApprovedBase{
  0%,100%{opacity:.45;transform:translateX(-50%) scale(.96)}
  50%{opacity:.82;transform:translateX(-50%) scale(1.04)}
}
@keyframes gcApprovedArtwork{
  0%,100%{
    filter:brightness(1) drop-shadow(0 0 12px rgba(38,129,255,.07));
  }
  50%{
    filter:brightness(1.012) drop-shadow(0 0 16px rgba(57,154,255,.10));
  }
}
50%{
    filter:brightness(1.02) drop-shadow(0 0 18px rgba(57,154,255,.11));
  }
}
50%{
    filter:brightness(1.04) drop-shadow(0 0 24px rgba(70,168,255,.16));
    transform:translateY(-2px);
  }
}
@media(max-width:1120px){
  .gc-approved-grid{
    grid-template-columns:1fr;
    width:min(calc(100% - 44px),980px);
    gap:48px;
    padding-top:82px;
    padding-bottom:90px;
  }
  .gc-approved-copy{max-width:760px}
  .gc-approved-visual{
    width:min(100%,900px);
    margin:0 auto;
    justify-self:center;
    transform:none;
  }
}
@media(max-width:720px){
  .gc-approved-grid{
    width:calc(100% - 38px);
    padding-top:66px;
    padding-bottom:72px;
    gap:40px;
  }
  .gc-approved-copy h2{font-size:clamp(38px,11vw,46px)}
  .gc-approved-lead{font-size:20px}
  .gc-approved-body{font-size:17px}
  .gc-approved-principles{grid-template-columns:1fr;gap:20px}
  .gc-approved-principle{grid-template-columns:50px 1fr}
  .gc-approved-icon{width:50px;height:50px}
  .gc-approved-icon svg{width:32px;height:32px}
}
@media(prefers-reduced-motion:reduce){
  .gc-approved-visual::before,
  .gc-approved-ambient,
  .gc-approved-visual img{
    animation:none!important;
  }
}

/* Governance & Compliance — authority motion
   Control radiates from the center. No dots, packets, or traveling system current. */

.gc-authority-pulse{
  position:absolute;
  z-index:3;
  left:50.2%;
  top:44.5%;
  width:27.8%;
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle,
    rgba(245,254,255,.24) 0%,
    rgba(137,225,255,.20) 22%,
    rgba(63,157,255,.13) 44%,
    rgba(28,93,235,.07) 60%,
    rgba(6,18,37,0) 75%);
  box-shadow:
    0 0 34px rgba(145,228,255,.18),
    0 0 78px rgba(62,153,255,.13),
    0 0 118px rgba(32,99,235,.08);
  animation:gcAuthorityPulse 6.8s ease-in-out infinite;
}
.gc-authority-base{
  position:absolute;
  z-index:3;
  left:50.2%;
  top:58.2%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  pointer-events:none;
  border:1px solid rgba(137,224,255,.26);
  box-shadow:0 0 14px rgba(75,180,255,.09),inset 0 0 18px rgba(95,198,255,.06);
}
.gc-authority-base--outer{
  width:35.5%;
  height:10.8%;
  border-color:rgba(157,231,255,.38);
  animation:gcAuthorityBaseOuter 6.8s ease-in-out .25s infinite;
}
.gc-authority-base--inner{
  width:25.5%;
  height:7.5%;
  border-color:rgba(221,250,255,.42);
  box-shadow:
    0 0 16px rgba(132,218,255,.14),
    inset 0 0 20px rgba(119,208,255,.09);
  animation:gcAuthorityBaseInner 6.8s ease-in-out .55s infinite;
}
.gc-authority-panel{
  position:absolute;
  z-index:3;
  border:1px solid transparent;
  border-radius:16px;
  pointer-events:none;
  opacity:0;
  box-shadow:0 0 0 rgba(102,197,255,0);
  animation:gcAuthorityPanel 8.8s ease-in-out infinite;
}
.gc-authority-panel--1{left:9.6%;top:15.4%;width:28.4%;height:15.1%;animation-delay:.15s}
.gc-authority-panel--2{right:9.0%;top:15.4%;width:28.0%;height:15.1%;animation-delay:.85s}
.gc-authority-panel--3{left:1.4%;top:39.3%;width:26.5%;height:14.6%;animation-delay:1.55s}
.gc-authority-panel--4{right:1.4%;top:39.3%;width:23.7%;height:14.6%;animation-delay:2.25s}
.gc-authority-panel--5{left:9.7%;top:65.2%;width:28.0%;height:15.1%;animation-delay:2.95s}
.gc-authority-panel--6{right:9.0%;top:65.2%;width:27.9%;height:15.1%;animation-delay:3.65s}

@keyframes gcAuthorityPulse{
  0%,100%{
    opacity:.42;
    transform:translate(-50%,-50%) scale(.92);
  }
  38%{
    opacity:.82;
    transform:translate(-50%,-50%) scale(1.02);
  }
  52%{
    opacity:1;
    transform:translate(-50%,-50%) scale(1.11);
  }
  68%{
    opacity:.72;
    transform:translate(-50%,-50%) scale(1.035);
  }
}
46%{opacity:1;transform:translate(-50%,-50%) scale(1.075)}
  68%{opacity:.68;transform:translate(-50%,-50%) scale(1.02)}
}
@keyframes gcAuthorityBaseOuter{
  0%,100%{
    opacity:.18;
    transform:translate(-50%,-50%) scale(.91);
  }
  46%{
    opacity:.70;
    transform:translate(-50%,-50%) scale(1.04);
  }
  56%{
    opacity:1;
    transform:translate(-50%,-50%) scale(1.10);
  }
  72%{
    opacity:.42;
    transform:translate(-50%,-50%) scale(1.02);
  }
}
48%{opacity:.76;transform:translate(-50%,-50%) scale(1.07)}
}
@keyframes gcAuthorityBaseInner{
  0%,100%{
    opacity:.22;
    transform:translate(-50%,-50%) scale(.93);
  }
  44%{
    opacity:.78;
    transform:translate(-50%,-50%) scale(1.025);
  }
  54%{
    opacity:1;
    transform:translate(-50%,-50%) scale(1.08);
  }
  70%{
    opacity:.46;
    transform:translate(-50%,-50%) scale(1.015);
  }
}
48%{opacity:.9;transform:translate(-50%,-50%) scale(1.05)}
}
@keyframes gcAuthorityPanel{
  0%,58%,100%{
    opacity:0;
    border-color:transparent;
    box-shadow:0 0 0 rgba(102,197,255,0);
  }
  66%{
    opacity:.28;
    border-color:rgba(148,221,255,.20);
    box-shadow:0 0 8px rgba(102,197,255,.05);
  }
  73%{
    opacity:.78;
    border-color:rgba(213,247,255,.52);
    box-shadow:
      0 0 16px rgba(117,208,255,.14),
      0 0 28px rgba(73,161,255,.08),
      inset 0 0 14px rgba(109,200,255,.05);
  }
  82%{
    opacity:.22;
    border-color:rgba(132,216,255,.16);
    box-shadow:0 0 7px rgba(102,197,255,.04);
  }
}
76%{
    opacity:.48;
    border-color:rgba(179,236,255,.30);
    box-shadow:0 0 11px rgba(99,193,255,.075),inset 0 0 13px rgba(91,181,255,.03);
  }
  85%{
    opacity:.14;
    border-color:rgba(123,212,255,.12);
    box-shadow:0 0 5px rgba(99,193,255,.025);
  }
}

@media(prefers-reduced-motion:reduce){
  .gc-authority-pulse,
  .gc-authority-base,
  .gc-authority-panel{animation:none!important}
  .gc-authority-panel{display:none!important}
}

/* Governance authority network — fixed-arm energy illumination
   The arms do not move. Their energy brightens and settles in place.
   Motion identity stays distinct from Existing Systems. */

.gc-authority-energy{
  position:absolute;
  inset:0;
  z-index:3;
  width:100%;
  height:100%;
  overflow:visible;
  pointer-events:none;
}

.gc-authority-arm{
  fill:none;
  stroke:rgba(170,233,255,.20);
  stroke-width:5.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
  opacity:.18;
  filter:url(#gcAuthorityArmGlow);
  animation:gcAuthorityArmWake 8.8s ease-in-out infinite;
}
.gc-authority-arm--1{animation-delay:.15s}
.gc-authority-arm--2{animation-delay:.85s}
.gc-authority-arm--3{animation-delay:1.55s}
.gc-authority-arm--4{animation-delay:2.25s}
.gc-authority-arm--5{animation-delay:2.95s}
.gc-authority-arm--6{animation-delay:3.65s}

.gc-authority-circuit-wake path{
  fill:none;
  stroke:rgba(85,168,255,.18);
  stroke-width:1.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
  opacity:.12;
  animation:gcCircuitWake 7.6s ease-in-out infinite;
}
.gc-authority-circuit-wake path:nth-child(2){animation-delay:-1.1s}
.gc-authority-circuit-wake path:nth-child(3){animation-delay:-2.2s}
.gc-authority-circuit-wake path:nth-child(4){animation-delay:-3.3s}
.gc-authority-circuit-wake path:nth-child(5){animation-delay:-4.4s}
.gc-authority-circuit-wake path:nth-child(6){animation-delay:-5.5s}

@keyframes gcAuthorityArmWake{
  0%,58%,100%{
    opacity:.16;
    stroke:rgba(108,194,255,.18);
    stroke-width:4.6;
  }
  68%{
    opacity:.42;
    stroke:rgba(154,226,255,.30);
    stroke-width:5.2;
  }
  74%{
    opacity:.92;
    stroke:rgba(225,250,255,.62);
    stroke-width:6.0;
  }
  82%{
    opacity:.34;
    stroke:rgba(126,207,255,.24);
    stroke-width:5.0;
  }
}

@keyframes gcCircuitWake{
  0%,100%{
    opacity:.08;
    stroke:rgba(67,145,255,.12);
  }
  45%{
    opacity:.28;
    stroke:rgba(101,187,255,.22);
  }
  58%{
    opacity:.46;
    stroke:rgba(160,225,255,.32);
  }
  72%{
    opacity:.18;
    stroke:rgba(92,174,255,.17);
  }
}

@media(prefers-reduced-motion:reduce){
  .gc-authority-arm,
  .gc-authority-circuit-wake path{
    animation:none!important;
  }
}

/* Governance principle micro-alignment:
   give the Audit Trail document/clock icon a little breathing room
   without moving the divider, copy, or principle column. */
.gc-approved-principle:nth-child(2) .gc-approved-icon svg{
  transform:translateX(4px);
}

/* ==========================================================================
   ZORYNT — FINAL GOVERNANCE + SYSTEMS MOBILE COMPLETION — SEP 1, 2026

   MOBILE / TABLET ONLY.
   No desktop rule is changed.

   GOVERNANCE:
   - keeps the complete approved 996×933 shield artwork inside the viewport
   - places the visual after the introductory copy on phone/tablet, before the
     longer controls list, so the shield is visible as part of the section
   - removes any residual horizontal clipping/desktop offset on <=900px

   SYSTEMS INTEGRATION:
   - the current approved inner file intentionally forces a 760px minimum
     canvas on phones; this parent-side correction gives that iframe a larger
     private viewport, then uniformly scales the COMPLETE approved composition
     back to the phone width
   - no Systems Integration artwork, video, rim animation, or desktop geometry
     is edited
   ========================================================================== */

@media (max-width:900px){

  /* ---------------- Governance & Compliance ---------------- */

  html body[data-page="home"] #governance-compliance.gc-approved-section{
    overflow-x:hidden!important;
    overflow-y:visible!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-grid{
    display:flex!important;
    flex-direction:column!important;
    width:min(calc(100% - 36px),760px)!important;
    max-width:760px!important;
    margin-inline:auto!important;
    padding-top:64px!important;
    padding-bottom:72px!important;
    gap:0!important;
    align-items:stretch!important;
  }

  /* display:contents lets the approved copy elements and approved visual be
     ordered for a narrow screen without changing the HTML or desktop layout. */
  html body[data-page="home"] #governance-compliance .gc-approved-copy{
    display:contents!important;
  }

  html body[data-page="home"] #governance-compliance #gc-approved-title{
    order:1!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-lead{
    order:2!important;
    width:100%!important;
    max-width:34ch!important;
    margin:24px 0 0!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-body{
    order:3!important;
    width:100%!important;
    max-width:45ch!important;
    margin:15px 0 0!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-visual{
    order:4!important;
    position:relative!important;
    width:min(100%,680px)!important;
    max-width:680px!important;
    margin:34px auto 0!important;
    justify-self:auto!important;
    align-self:center!important;
    transform:none!important;
    overflow:visible!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-visual img{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    height:auto!important;
    object-fit:contain!important;
    object-position:center!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-principles{
    order:5!important;
    width:100%!important;
    margin-top:36px!important;
  }


  /* ---------------- Systems Integration ---------------- */

  html body[data-page="home"] #systems-integration .systems-approved-stage__canvas{
    overflow:hidden!important;
  }

  html body[data-page="home"] #systems-integration #systems-approved-frame{
    max-height:none!important;
  }
}


/* Tablet widths above the inner file's 760px minimum need no scaling.
   Match the real approved 1584×993 scene ratio so no navy band is left below. */
@media (min-width:761px) and (max-width:900px){
  html body[data-page="home"] #systems-integration #systems-approved-frame{
    width:100%!important;
    height:62.689394vw!important;
    transform:none!important;
  }
}


/* Phones: the current approved Systems Integration file itself contains
   min-width:760px. Keep that source untouched. A 240% iframe viewport keeps
   even a 320px phone above 760px internally; scaling by 1/2.4 returns the
   entire scene to exactly the device width. */
@media (max-width:760px){

  html body[data-page="home"] #systems-integration .systems-approved-stage__canvas{
    position:relative!important;
    width:100%!important;
    max-width:100%!important;
    height:62.689394vw!important;
    min-height:0!important;
    overflow:hidden!important;
  }

  html body[data-page="home"] #systems-integration #systems-approved-frame{
    display:block!important;
    width:240%!important;
    max-width:none!important;
    height:150.454546vw!important;
    max-height:none!important;
    margin:0!important;
    transform:scale(.416666667)!important;
    transform-origin:top left!important;
    overflow:hidden!important;
  }
}


@media (max-width:620px){

  html body[data-page="home"] #governance-compliance .gc-approved-grid{
    width:calc(100% - 32px)!important;
    padding-top:58px!important;
    padding-bottom:66px!important;
  }

  html body[data-page="home"] #governance-compliance #gc-approved-title{
    font-size:clamp(38px,11vw,46px)!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-lead{
    font-size:20px!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-body{
    font-size:17px!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-visual{
    width:100%!important;
    margin-top:30px!important;
  }

  html body[data-page="home"] #governance-compliance .gc-approved-principles{
    grid-template-columns:1fr!important;
    gap:20px!important;
    margin-top:32px!important;
  }
}

