:root {
  --ink: #070b12;
  --ink-2: #0d1420;
  --panel: #111a27;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-2: #48b7ff;
  --steel: #8d9aab;
  --muted: #5f6c7e;
  --line: rgba(255, 255, 255, .12);
  --dark-line: rgba(7, 11, 18, .12);
  --radius: 8px;
  --shadow: 0 28px 80px rgba(7, 11, 18, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  --scroll-shift: 0px;
  --scroll-fade: 1;
  --scroll-progress: 0%;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, .btn, .header-cta, a { cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 200;
  background: rgba(255,255,255,.08);
}
.scroll-progress span {
  display: block;
  width: var(--scroll-progress);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 24px rgba(72,183,255,.55);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: rgba(7, 11, 18, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 11, 18, .92);
  border-bottom-color: rgba(72,183,255,.24);
}
.brand img { width: 210px; max-width: 48vw; display: block; }
.nav { display: flex; justify-content: center; gap: 26px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 600; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; transition: color .2s ease; }
.nav a:hover { color: var(--white); }
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(72,183,255,.55);
  color: var(--white);
  background: rgba(37,99,235,.22);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.section-dark { background: var(--ink); color: var(--white); }
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .92fr);
  gap: clamp(32px, 4.5vw, 60px);
  align-items: center;
  padding: 116px clamp(18px, 5vw, 70px) 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 84px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,183,255,.45), transparent);
}
.hero-copy, .engine-shell { position: relative; z-index: 1; }
.hero-copy { grid-column: 1; grid-row: 1; }
.engine-shell { grid-column: 2; grid-row: 1; align-self: center; }
.hero-net { grid-column: 1 / -1; grid-row: 1; }
.hero-copy {
  transform: translateY(calc(var(--scroll-shift) * .24));
  opacity: var(--scroll-fade);
}
.engine-shell {
  transform: translateY(calc(var(--scroll-shift) * -.16));
}
.eyebrow {
  margin: 0 0 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-2);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 92px);
  line-height: .96;
  letter-spacing: -.5px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}
h3 { font-size: 20px; margin-bottom: 10px; }
.hero-lead, .section-heading p, .value-copy p, .roi-panel p, .cta-copy p {
  max-width: 690px;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
}
.workflow-band .section-heading p, .value-copy p, .roi-panel p, .final-cta p { color: #526073; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0;
}
.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.hero-stats dt { font-size: 22px; font-weight: 900; }
.hero-stats dd { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: 12.5px; }
.hero-stats div { padding: 14px; }

.engine-shell {
  min-height: 440px;
  max-height: 600px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0b111b;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.engine-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255,255,255,.64);
}
.engine-topbar strong { color: #8ee6ff; }
.engine-grid {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  gap: 16px;
  padding: 18px;
  min-height: 416px;
}
.lane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,11,18,.62);
  overflow: hidden;
}
.lane-head {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}
.lane-head strong { color: var(--white); }
.task-stack, .output-feed { display: grid; gap: 10px; padding: 14px; }
.task, .output-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255,255,255,.055);
  transform: translateY(0);
}
.task small, .output-item small {
  display: block;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--blue-2);
}
.task strong, .output-item strong { display: block; font-size: 14px; }
.task span, .output-item span { color: rgba(255,255,255,.58); font-size: 12px; }
.task.processing { border-color: rgba(72,183,255,.7); box-shadow: 0 0 0 1px rgba(72,183,255,.24), 0 0 34px rgba(37,99,235,.18); }

.processor {
  position: relative;
  display: grid;
  place-items: center;
}
.processor-ring {
  width: 176px;
  height: 176px;
  border: 1px solid rgba(72,183,255,.42);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}
.processor-ring::before, .processor-ring::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--blue-2);
  border-radius: 50%;
}
.processor-ring::before { top: 68px; left: 18px; }
.processor-ring::after { bottom: 68px; right: 18px; background: var(--blue); }
.processor-core {
  position: absolute;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border-radius: 50%;
  background: #101827;
  border: 1px solid rgba(255,255,255,.16);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(255,255,255,.8);
}
.signal-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  opacity: .62;
}
.signal-line-one { top: 38%; }
.signal-line-two { top: 62%; animation-delay: 1.2s; }

.workflow-band, .value-section, .roi-section, .process, .final-cta {
  padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 76px);
}
.workflow-band {
  position: relative;
  overflow: hidden;
}
.workflow-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(37,99,235,.035), transparent 42%, rgba(37,99,235,.025));
  transform: translateY(calc(var(--scroll-shift) * .10));
}
.workflow-band > * {
  position: relative;
  z-index: 1;
}
.sheet-automation {
  position: absolute;
  inset: 26px clamp(14px, 4vw, 56px) 24px;
  z-index: 0;
  min-height: 520px;
  border: 1px solid rgba(37,99,235,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  overflow: hidden;
  opacity: .28;
  pointer-events: none;
  transform: translateY(calc(var(--scroll-shift) * .05));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 78%, transparent 100%);
}
.sheet-head {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(7,11,18,.05);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(83,97,116,.72);
}
.sheet-head strong {
  color: rgba(37,99,235,.72);
}
.sheet-grid {
  position: relative;
  display: grid;
  padding: 16px;
  gap: 0;
}
.sheet-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr .8fr;
  min-height: 54px;
  border: 1px solid rgba(7,11,18,.045);
  border-bottom: 0;
  background: rgba(255,255,255,.36);
}
.sheet-row:last-child { border-bottom: 1px solid rgba(7,11,18,.045); }
.sheet-row span {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(7,11,18,.04);
  color: rgba(77,90,107,.72);
  font-size: 13px;
  white-space: nowrap;
}
.sheet-row span:last-child { border-right: 0; }
.sheet-labels {
  min-height: 40px;
  background: rgba(237,244,255,.42);
}
.sheet-labels span {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(37,99,235,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.sheet-row.active {
  position: relative;
  background: rgba(37,99,235,.055);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.2);
}
.sheet-row.active span:last-child {
  color: rgba(37,99,235,.82);
  font-weight: 900;
}
.automation-scan {
  position: absolute;
  top: 46px;
  left: -18%;
  width: 18%;
  height: calc(100% - 46px);
  background: linear-gradient(90deg, transparent, rgba(72,183,255,.22), transparent);
  animation: scanSheet 4.8s ease-in-out infinite;
}
.flow-map {
  margin-top: 34px;
}
.section-heading { max-width: 820px; margin-bottom: 34px; }
.flow-map, .service-grid, .industry-grid, .metric-row, .process-list {
  display: grid;
  gap: 16px;
}
.flow-map { grid-template-columns: repeat(4, 1fr); }
.flow-stage, .metric-card, .service-grid article, .industry-grid article, .process-list li {
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}
.stage-label, .service-grid span {
  display: inline-block;
  margin-bottom: 28px;
  font-family: "JetBrains Mono", monospace;
  color: var(--blue);
  font-weight: 800;
}
.flow-stage p, .service-grid p, .industry-grid p, .process-list p {
  color: var(--muted);
  line-height: 1.6;
}

.value-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: end;
  background: var(--white);
}
.metric-row { grid-template-columns: repeat(3, 1fr); }
.metric-card strong { display: block; margin-bottom: 12px; font-size: 32px; letter-spacing: 0; }
.metric-card span { color: var(--muted); line-height: 1.5; }

.services, .industries { padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 76px); }
.services .section-heading p, .industries .section-heading p { color: rgba(255,255,255,.66); }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid article {
  background: rgba(255,255,255,.045);
  border-color: var(--line);
}
.service-grid article.wide-service { grid-column: span 2; }
.service-grid h3, .industry-grid h3 { color: var(--white); }
.service-grid p, .industry-grid p { color: rgba(255,255,255,.62); }

.roi-panel {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .7fr);
  gap: 40px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.calculator {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: #f0f4fa;
}
.calculator label { font-weight: 800; }
.input-row { display: grid; grid-template-columns: 1fr 74px; gap: 14px; align-items: center; }
input[type="range"] { width: 100%; accent-color: var(--blue); min-height: 44px; }
output {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}
.roi-result {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.roi-result span { color: rgba(255,255,255,.62); }
.roi-result strong { font-size: 32px; }

.process-list {
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  list-style: none;
  counter-reset: process;
}
.process-list li { position: relative; }
.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 40px;
  font-family: "JetBrains Mono", monospace;
  color: var(--blue);
  font-weight: 900;
}
.process-list span { display: block; margin-bottom: 10px; font-size: 20px; font-weight: 900; }

.industry-grid { grid-template-columns: repeat(5, 1fr); }
.industry-grid article {
  background: rgba(255,255,255,.045);
  border-color: var(--line);
}

.final-cta {
  display: grid;
  grid-template-columns: .9fr minmax(360px, .75fr);
  gap: 44px;
  align-items: start;
  background: var(--white);
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background: #f8fafc;
}
.lead-form label { display: grid; gap: 7px; font-weight: 800; color: #1c2533; }
.lead-form input, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd6e3;
  border-radius: 8px;
  padding: 12px 13px;
  background: #ffffff;
  color: #070b12;
  font-size: 15px;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #8a97a8; }
.lead-form input:focus, .lead-form textarea:focus {
  outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.lead-form textarea { resize: vertical; min-height: 96px; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.58);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 76px) 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { width: 200px; margin-bottom: 16px; }
.footer-brand p { margin: 0 0 8px; font-size: 14px; max-width: 280px; line-height: 1.5; }
.footer-parent { color: rgba(255,255,255,.4); font-size: 13px !important; }
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; margin: 0 0 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.6); font-size: 14px;
  padding: 5px 0; transition: color .2s ease;
}
.footer-col a:hover { color: var(--blue2); }
.footer-contact address {
  font-style: normal; font-size: 14px; color: rgba(255,255,255,.6);
  line-height: 1.6; margin: 12px 0 16px;
}
.footer-cta {
  display: inline-flex !important; align-items: center;
  padding: 10px 16px !important; margin-top: 4px;
  border: 1px solid rgba(72,183,255,.5); border-radius: 8px;
  color: #fff !important; font-weight: 700; font-size: 13px !important;
  background: rgba(37,99,235,.18); transition: background .2s, border-color .2s;
}
.footer-cta:hover { background: rgba(37,99,235,.3); border-color: var(--blue2); color: #fff !important; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  max-width: 1280px; margin: 0 auto; padding-top: 24px;
  font-size: 13px; color: rgba(255,255,255,.42);
}
.footer-meta { font-family: "JetBrains Mono", monospace; }

/* Fail-safe reveal: content is ALWAYS visible; animation only enhances when JS adds .reveal-ready */
.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(28px) scale(.99); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.flow-stage, .metric-card, .service-grid article, .industry-grid article, .process-list li {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.flow-stage:hover, .metric-card:hover, .service-grid article:hover, .industry-grid article:hover, .process-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.38);
  box-shadow: 0 20px 44px rgba(7,11,18,.10);
}
.service-grid article:hover, .industry-grid article:hover {
  box-shadow: 0 20px 44px rgba(37,99,235,.12);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes taskPulse { 50% { transform: translateY(-4px); } }
@keyframes scanSheet {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 1; }
  72% { opacity: 1; }
  100% { transform: translateX(760%); opacity: 0; }
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 104px; padding-bottom: 56px; }
  .hero-copy { grid-column: 1; grid-row: auto; }
  .engine-shell { grid-column: 1; grid-row: auto; min-height: 420px; max-height: none; }
  .hero-net { grid-column: 1; }
  .sheet-automation { min-height: 460px; }
  .flow-map, .process-list { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .value-section, .roi-panel, .final-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .brand img { width: 176px; }
  .hero { padding-top: 96px; padding-bottom: 44px; gap: 26px; }
  .engine-shell { min-height: 400px; }
  .sheet-automation {
    inset: 18px 10px 18px;
    min-height: 620px;
    opacity: .18;
  }
  .sheet-row {
    grid-template-columns: 1fr 1fr;
  }
  .sheet-row span {
    min-height: 44px;
    border-bottom: 1px solid rgba(7,11,18,.06);
  }
  .flow-map { margin-top: 0; }
  .hero-stats, .metric-row, .flow-map, .service-grid, .process-list, .industry-grid { grid-template-columns: 1fr; }
  .engine-grid { grid-template-columns: 1fr; }
  .processor { min-height: 190px; }
  .service-grid article.wide-service { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .header-cta { padding: 0 12px; font-size: 13px; }
  .brand img { width: 150px; }
  h1 { font-size: 44px; }
  .engine-shell { border-radius: 12px; }
  .engine-grid { padding: 12px; }
  .workflow-band, .value-section, .services, .roi-section, .process, .industries, .final-cta { padding-left: 14px; padding-right: 14px; }
  .sheet-row span { font-size: 12px; padding: 0 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-copy, .engine-shell, .workflow-band::before, .sheet-automation { transform: none !important; }
  .automation-scan { display: none; }
}

/* -------------------------------------------------------------
   SIGNATURE LAYER � distinctive identity elements
   ------------------------------------------------------------- */

/* Live node network behind hero */
.hero-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}
.hero { position: relative; }

/* Cursor spotlight on dark sections */
.section-dark { position: relative; }
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%),
              rgba(72,183,255,.10), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.section-dark:hover::after { opacity: 1; }
.section-dark > * { position: relative; z-index: 1; }

/* System log ticker � engineered terminal detail */
.sys-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 9px 15px;
  border: 1px solid rgba(72,183,255,.28);
  border-radius: 999px;
  background: rgba(7,11,18,.55);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  letter-spacing: .01em;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.sys-ticker code { color: #8ee6ff; }
.sys-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34e7a1;
  box-shadow: 0 0 0 0 rgba(52,231,161,.6);
  animation: sysPulse 1.8s infinite;
  flex: 0 0 auto;
}
@keyframes sysPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,231,161,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(52,231,161,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,231,161,0); }
}

/* Editorial oversized section index numbers */
.flow-stage { position: relative; }
.flow-stage .stage-label {
  font-family: "JetBrains Mono", monospace;
  color: var(--blue-2);
}

/* Distinctive blue-cut underline on h1 last word handled via JS span */
.accent-cut { position: relative; color: var(--blue-2); }

@media (prefers-reduced-motion: reduce) {
  .hero-net { display: none; }
  .sys-dot { animation: none; }
}

/* -------------------------------------------------------------
   VISUAL EXPERIENCE LAYER � drag-to-automate reveal
   ------------------------------------------------------------- */
.transform {
  padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 76px);
}
.transform-head { margin-bottom: 36px; }

.reveal-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: clamp(420px, 56vh, 560px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.reveal-after, .reveal-before {
  position: absolute;
  inset: 0;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reveal-after {
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(37,99,235,.18), transparent 55%),
    linear-gradient(180deg, #0a1422, #0b1a2e);
}
.reveal-before {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(220,80,80,.14), transparent 55%),
    linear-gradient(180deg, #141019, #1a0f12);
  clip-path: inset(0 50% 0 0);
}
.rv-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "JetBrains Mono", monospace; font-size: 12px; color: rgba(255,255,255,.6);
}
.rv-pill {
  padding: 5px 11px; border-radius: 999px; font-weight: 800; letter-spacing: .12em; font-size: 11px;
}
.rv-pill-on  { background: rgba(52,231,161,.16); color: #5cf2b6; border: 1px solid rgba(52,231,161,.4); }
.rv-pill-off { background: rgba(255,120,120,.14); color: #ff9d9d; border: 1px solid rgba(255,120,120,.4); }
.rv-rows { display: grid; gap: 10px; flex: 1; align-content: start; }
.rv-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 12px; align-items: center;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  font-size: 14px;
}
.rv-row span { color: rgba(255,255,255,.82); font-weight: 600; }
.rv-row b { font-weight: 600; font-size: 13px; }
.rv-row i { font-family: "JetBrains Mono", monospace; font-size: 12px; font-style: normal; opacity: .85; }
.rv-row.done { border-color: rgba(52,231,161,.28); }
.rv-row.done b { color: #5cf2b6; }
.rv-row.done i { color: #5cf2b6; }
.rv-row.wait { border-color: rgba(255,180,90,.28); }
.rv-row.wait b, .rv-row.wait i { color: #ffc078; }
.rv-row.late { border-color: rgba(255,110,110,.34); }
.rv-row.late b, .rv-row.late i { color: #ff8a8a; }
.rv-foot {
  font-family: "JetBrains Mono", monospace; font-size: 12.5px;
  color: #5cf2b6; display: flex; align-items: center; gap: 9px;
}
.rv-foot-bad { color: #ff8a8a; }
.sys-dot.bad { background: #ff6b6b; }
.sys-dot.bad { animation: sysPulse 1.8s infinite; }

.reveal-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-1px);
  z-index: 5;
}
.reveal-line {
  position: absolute; inset: 0; left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #8ee6ff, #8ee6ff, transparent);
  box-shadow: 0 0 20px rgba(72,183,255,.7);
}
.reveal-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #0b111b; border: 2px solid #8ee6ff;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 0 28px rgba(72,183,255,.6);
  cursor: ew-resize;
}
.reveal-grip span { width: 2px; height: 16px; background: #8ee6ff; border-radius: 2px; }
.reveal-grip::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(142,230,255,.3);
  animation: gripPulse 2.4s ease-out infinite;
}
@keyframes gripPulse {
  0% { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* count-up emphasis */
.metric-card strong, .hero-stats dt { font-variant-numeric: tabular-nums; }
.counting { color: var(--blue-2); }

@media (max-width: 760px) {
  .rv-row { grid-template-columns: 1fr auto; font-size: 12px; }
  .rv-row b { grid-column: 1 / -1; }
  .reveal-stage { height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-grip::before { animation: none; }
}

/* -------------------------------------------------------------
   ICON-LED SECTIONS � replace text walls with visuals
   ------------------------------------------------------------- */

/* Service cards: icon + number + tight copy */
.service-grid article { position: relative; padding-top: 22px; }
.svc-num {
  position: absolute; top: 16px; right: 18px;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  color: rgba(255,255,255,.3); font-weight: 700;
}
.svc-ico {
  width: 40px; height: 40px;
  color: var(--blue-2);
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 11px;
  background: rgba(72,183,255,.1);
  border: 1px solid rgba(72,183,255,.22);
  transition: transform .25s ease, background .25s ease;
}
.service-grid article:hover .svc-ico { transform: translateY(-3px) scale(1.05); background: rgba(72,183,255,.18); }
.service-grid article h3 { margin-bottom: 6px; }
.service-grid article p { color: rgba(255,255,255,.6); font-size: 14px; }

/* Process: horizontal connected timeline with icon nodes */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 0 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.process-track li {
  position: relative;
  text-align: center;
  padding: 0 14px;
}
/* connector line */
.process-track li::before {
  content: "";
  position: absolute;
  top: 33px; left: 50%; right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(37,99,235,.15));
  z-index: 0;
}
.process-track li:last-child::before { display: none; }
.pt-node {
  position: relative; z-index: 1;
  width: 66px; height: 66px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 26px rgba(37,99,235,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pt-node svg { width: 28px; height: 28px; }
.process-track li:hover .pt-node {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 34px rgba(37,99,235,.3);
}
.process-track span { display: block; font-size: 19px; font-weight: 900; margin-bottom: 6px; }
.process-track p { color: #5f6c7e; font-size: 14px; margin: 0; }

/* Industries: icon chips, copy reveals on hover */
.industry-grid article {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 22px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.industry-grid article svg {
  width: 34px; height: 34px; color: var(--blue-2);
  transition: transform .25s ease;
}
.industry-grid article h3 { margin: 0; font-size: 17px; }
.industry-grid article p {
  margin: 0; font-size: 13px; color: rgba(255,255,255,.55);
  max-height: 0; opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin .3s ease;
}
.industry-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(72,183,255,.4);
  background: rgba(72,183,255,.06);
}
.industry-grid article:hover svg { transform: scale(1.12); }
.industry-grid article:hover p { max-height: 80px; opacity: 1; }

@media (max-width: 900px) {
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process-track li:nth-child(2)::before { display: none; }
}
@media (max-width: 760px) {
  .process-track { grid-template-columns: 1fr; }
  .process-track li::before { display: none; }
  .industry-grid article p { max-height: 80px; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .industry-grid article p { max-height: 80px; opacity: 1; transition: none; }
}

/* ---- Language toggle ---- */
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px; cursor: pointer;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.6); transition: border-color .2s, background .2s;
  min-height: 36px;
}
.lang-toggle:hover { border-color: rgba(72,183,255,.5); background: rgba(72,183,255,.1); }
.lang-opt { padding: 2px 4px; border-radius: 5px; transition: color .2s; }
.lang-opt.active { color: var(--blue2); }
.lang-sep { opacity: .4; }
@media (max-width: 760px) {
  .header-right { gap: 8px; }
  .lang-toggle { padding: 5px 9px; font-size: 11px; min-height: 34px; }
}

/* Footer responsive */
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
