:root {
  --ops-blue: #2f6ff7;
  --ops-blue-dark: #1649bd;
  --ops-orange: #ff6b3d;
  --ops-green: #0b9f72;
  --ops-yellow: #ffd85a;
  --ops-ink: #111722;
  --ops-muted: #5b6675;
  --ops-bg: #edf2f8;
  --ops-white: #ffffff;
  --ops-line: #d7dee8;
  --ops-line-strong: #b8c2d0;
  --ops-radius: 6px;
  --ops-shadow: 0 26px 70px rgba(21, 31, 46, 0.18);
  --ops-sans: "Manrope", Arial, sans-serif;
  --ops-mono: "IBM Plex Mono", monospace;
}

body {
  color: var(--ops-ink);
  background: var(--ops-bg);
  font-family: var(--ops-sans);
}

button,
input,
textarea {
  font-family: var(--ops-sans);
}

button {
  border: 0;
  cursor: pointer;
}

.ops-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px 28px;
  background: rgba(247, 249, 252, 0.94);
  border-bottom: 1px solid var(--ops-line);
  backdrop-filter: blur(18px);
}

.ops-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ops-ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.ops-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--ops-blue);
  border-radius: var(--ops-radius);
  font-family: var(--ops-mono);
  font-size: 15px;
}

.ops-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.text-link,
.compact-button,
.ops-primary,
.ops-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--ops-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition-property: color, background-color, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.text-link {
  min-height: 40px;
}

.text-link:hover {
  color: var(--ops-blue);
}

.compact-button {
  padding: 0 18px;
  color: #ffffff;
  background: var(--ops-ink);
  border-radius: var(--ops-radius);
}

.compact-button:hover,
.ops-primary:hover {
  background: var(--ops-blue-dark);
  box-shadow: 0 10px 24px rgba(47, 111, 247, 0.24);
  transform: translateY(-2px);
}

.compact-button:active,
.ops-primary:active,
.ops-secondary:active {
  transform: scale(0.97);
}

.ops-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  height: 850px;
  max-height: 930px;
  overflow: hidden;
  background: #e8edf4;
  border-bottom: 1px solid var(--ops-line);
}

.ops-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(17, 23, 34, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 34, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000 0 65%, transparent 95%);
}

.ops-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--ops-blue) 0 44%, var(--ops-orange) 44% 70%, var(--ops-green) 70%);
}

.ops-hero-copy {
  position: relative;
  z-index: 5;
  width: min(650px, 48%);
  padding: 104px 0 90px max(28px, calc((100vw - 1440px) / 2));
}

.ops-kicker,
.ops-section-head > p,
.pricing-head > p {
  margin: 0 0 18px;
  color: var(--ops-blue);
  font-family: var(--ops-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.ops-hero h1 {
  max-width: 11ch;
  margin: 0 0 26px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
}

.ops-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: #3f4b5b;
  font-size: 19px;
  line-height: 1.58;
  font-weight: 500;
}

.ops-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ops-primary,
.ops-secondary {
  min-width: 190px;
  padding: 0 20px;
  border-radius: var(--ops-radius);
}

.ops-primary {
  gap: 18px;
  color: #ffffff;
  background: var(--ops-blue);
  box-shadow: 0 12px 28px rgba(47, 111, 247, 0.2);
}

.ops-secondary {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px var(--ops-line-strong);
}

.ops-secondary:hover {
  color: var(--ops-blue-dark);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--ops-blue);
}

.hero-promises {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-promises li {
  position: relative;
  padding-left: 16px;
  color: #485365;
  font-size: 12px;
  font-weight: 700;
}

.hero-promises li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--ops-green);
  border-radius: 50%;
}

.pipeline-stage {
  position: absolute;
  top: 112px;
  right: max(18px, calc((100vw - 1480px) / 2));
  z-index: 3;
  width: min(760px, 55vw);
  min-width: 680px;
  height: 610px;
  overflow: hidden;
  background: rgba(249, 251, 254, 0.96);
  border: 1px solid rgba(17, 23, 34, 0.14);
  border-radius: 8px;
  box-shadow: var(--ops-shadow);
  transform: rotate(-0.6deg);
}

.pipeline-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--ops-ink);
  font-family: var(--ops-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.pipeline-caption b {
  position: relative;
  padding-left: 16px;
  color: #76dfbc;
}

.pipeline-caption b::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #2fc693;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(47, 198, 147, 0.14);
  animation: opsPulse 2s ease-in-out infinite;
}

.source-cluster {
  position: absolute;
  top: 84px;
  left: 18px;
  display: grid;
  gap: 12px;
  width: 208px;
}

.source-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--ops-line);
  border-left: 3px solid var(--ops-blue);
  border-radius: var(--ops-radius);
  box-shadow: 0 8px 20px rgba(26, 36, 52, 0.07);
}

.source-card-b { border-left-color: var(--ops-orange); }
.source-card-c { border-left-color: var(--ops-green); }
.source-card-d { border-left-color: var(--ops-yellow); }

.source-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ops-blue-dark);
  background: #eaf1ff;
  border-radius: 5px;
  font-family: var(--ops-mono);
  font-size: 13px;
  font-weight: 600;
}

.source-card-b .source-icon { color: #a83d1f; background: #fff0eb; }
.source-card-c .source-icon { color: #087452; background: #e3f7f0; }
.source-card-d .source-icon { color: #7a5b00; background: #fff7d5; }

.source-card b,
.source-card small {
  display: block;
}

.source-card b {
  margin-bottom: 4px;
  font-size: 12px;
}

.source-card small {
  color: var(--ops-muted);
  font-size: 9px;
  line-height: 1.35;
}

.source-card em {
  color: var(--ops-blue-dark);
  font-family: var(--ops-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.pipeline-tracks {
  position: absolute;
  top: 110px;
  left: 220px;
  width: 76px;
  height: 332px;
}

.pipeline-tracks i {
  position: absolute;
  left: 0;
  width: 76px;
  height: 1px;
  background: #aeb9c8;
  transform-origin: right center;
}

.pipeline-tracks i:nth-child(1) { top: 12px; transform: rotate(19deg); }
.pipeline-tracks i:nth-child(2) { top: 94px; transform: rotate(7deg); }
.pipeline-tracks i:nth-child(3) { top: 176px; transform: rotate(-7deg); }
.pipeline-tracks i:nth-child(4) { top: 258px; transform: rotate(-19deg); }

.cargo-pulse {
  position: absolute;
  z-index: 2;
  padding: 4px 7px;
  color: #ffffff;
  background: var(--ops-blue);
  border-radius: 3px;
  font-family: var(--ops-mono);
  font-size: 8px;
  text-transform: uppercase;
  animation: cargoMove 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.pulse-one { top: 85px; }
.pulse-two { top: 220px; animation-delay: 1.7s; background: var(--ops-orange); }

.rules-node {
  position: absolute;
  top: 132px;
  left: 292px;
  width: 210px;
  overflow: hidden;
  background: #f1f5fa;
  border: 1px solid var(--ops-line-strong);
  border-radius: var(--ops-radius);
}

.rules-node header,
.rules-node footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
}

.rules-node header {
  color: #ffffff;
  background: var(--ops-blue);
  font-size: 11px;
}

.rules-node header b {
  font-family: var(--ops-mono);
  font-size: 9px;
}

.rules-list {
  display: grid;
  gap: 0;
  padding: 8px 14px;
}

.rules-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border-bottom: 1px solid var(--ops-line);
  font-size: 10px;
  font-weight: 700;
}

.rules-list span:last-child { border-bottom: 0; }

.rules-list i {
  width: 8px;
  height: 8px;
  background: var(--ops-green);
  border-radius: 50%;
}

.rules-node footer {
  color: var(--ops-muted);
  background: #ffffff;
  border-top: 1px solid var(--ops-line);
  font-family: var(--ops-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.rules-node footer strong { color: var(--ops-green); }

.output-track {
  position: absolute;
  top: 260px;
  left: 502px;
  width: 54px;
  height: 80px;
}

.output-track i {
  position: absolute;
  top: 28px;
  left: 0;
  width: 54px;
  height: 2px;
  overflow: hidden;
  background: var(--ops-green);
}

.output-track i::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -10px;
  width: 10px;
  height: 8px;
  background: #ffffff;
  animation: outputMove 2s linear infinite;
}

.output-track span {
  position: absolute;
  top: 42px;
  left: -16px;
  width: 90px;
  color: var(--ops-green);
  font-family: var(--ops-mono);
  font-size: 7px;
  text-align: center;
  text-transform: uppercase;
}

.ati-node {
  position: absolute;
  top: 156px;
  right: 14px;
  width: 194px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ops-line-strong);
  border-radius: var(--ops-radius);
  box-shadow: 0 12px 26px rgba(24, 34, 48, 0.09);
}

.ati-node header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--ops-ink);
}

.ati-node header span {
  font-size: 28px;
  font-weight: 800;
}

.ati-node header b {
  color: #88e6c6;
  font-family: var(--ops-mono);
  font-size: 7px;
  text-transform: uppercase;
}

.ati-row {
  min-height: 64px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--ops-line);
}

.ati-row strong,
.ati-row em {
  display: block;
}

.ati-row strong {
  margin-bottom: 6px;
  font-size: 10px;
}

.ati-row em {
  width: fit-content;
  padding: 3px 6px;
  color: #087452;
  background: #e2f7ef;
  border-radius: 3px;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.ati-node footer {
  min-height: 42px;
  padding: 14px;
  color: var(--ops-muted);
  background: #f5f7fa;
  font-family: var(--ops-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.ops-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 116px;
  background: var(--ops-ink);
  color: #ffffff;
}

.ops-proof > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ops-proof > div:last-child { border-right: 0; }

.ops-proof strong {
  color: var(--ops-orange);
  font-family: var(--ops-mono);
  font-size: 11px;
}

.ops-proof span {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.ops-outcomes,
.ops-pricing {
  width: min(1384px, calc(100% - 56px));
  margin: 0 auto;
  padding: 112px 0;
}

.ops-section-head {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 0.7fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--ops-line-strong);
}

.ops-section-head h2,
.pricing-head h2,
.workspace-copy h2,
.source-map-head h2,
.request-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.ops-section-head > span {
  color: var(--ops-muted);
  font-size: 15px;
  line-height: 1.65;
}

.outcome-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.25fr 0.8fr;
  gap: 28px;
  align-items: center;
  min-height: 142px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ops-line-strong);
}

.row-index {
  color: var(--ops-orange);
  font-family: var(--ops-mono);
  font-size: 11px;
  font-weight: 600;
}

.outcome-row h3,
.outcome-row p,
.outcome-row strong {
  margin: 0;
}

.outcome-row h3 {
  font-size: 20px;
  line-height: 1.35;
}

.outcome-row p {
  color: var(--ops-muted);
  font-size: 14px;
  line-height: 1.65;
}

.outcome-row strong {
  color: var(--ops-blue-dark);
  font-size: 12px;
  line-height: 1.5;
}

.ops-workspace {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 760px;
  color: #ffffff;
  background: #1d2636;
}

.workspace-copy {
  padding: 116px max(40px, calc((100vw - 1384px) / 2));
}

.workspace-copy h2 {
  max-width: 570px;
  margin-bottom: 24px;
}

.workspace-copy > p:not(.ops-kicker) {
  max-width: 580px;
  margin: 0 0 42px;
  color: #bcc6d4;
  font-size: 16px;
  line-height: 1.75;
}

.workspace-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workspace-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.workspace-points span {
  color: var(--ops-yellow);
  font-family: var(--ops-mono);
  font-size: 10px;
}

.workspace-tool {
  align-self: center;
  width: min(680px, calc(100% - 56px));
  margin: 80px auto;
  overflow: hidden;
  color: var(--ops-ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.workspace-tool > header,
.workspace-tool > footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.workspace-tool > header {
  min-height: 86px;
  border-bottom: 1px solid var(--ops-line);
}

.workspace-tool header small,
.workspace-tool header strong {
  display: block;
}

.workspace-tool header small {
  margin-bottom: 6px;
  color: var(--ops-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.workspace-tool header strong { font-size: 17px; }

.workspace-tool header > span {
  padding: 7px 10px;
  color: #087452;
  background: #e2f7ef;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ops-line);
}

.rule-grid > div {
  min-height: 126px;
  padding: 20px 22px;
  background: #ffffff;
}

.rule-grid small,
.rule-grid strong,
.rule-grid em {
  display: block;
}

.rule-grid small {
  margin-bottom: 14px;
  color: var(--ops-muted);
  font-size: 10px;
}

.rule-grid strong {
  margin-bottom: 15px;
  font-size: 20px;
}

.rule-grid em {
  color: var(--ops-blue-dark);
  font-family: var(--ops-mono);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.scope-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 0 22px;
  background: #f3f6fa;
  border-top: 1px solid var(--ops-line);
  border-bottom: 1px solid var(--ops-line);
  font-size: 11px;
}

.scope-strip span { color: var(--ops-muted); }
.scope-strip i { color: var(--ops-orange); font-style: normal; }

.workspace-tool footer span {
  color: var(--ops-muted);
  font-size: 11px;
}

.workspace-tool footer button {
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--ops-blue);
  border-radius: var(--ops-radius);
  font-size: 12px;
  font-weight: 800;
}

.source-map {
  padding: 112px max(28px, calc((100vw - 1384px) / 2));
  background: #f8fafc;
}

.source-map-head {
  display: grid;
  grid-template-columns: 200px 1fr 0.7fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 52px;
}

.source-map-head > p:last-child {
  margin: 0;
  color: var(--ops-muted);
  font-size: 15px;
  line-height: 1.65;
}

.source-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ops-line-strong);
  border-bottom: 1px solid var(--ops-line-strong);
}

.source-map-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--ops-line-strong);
}

.source-map-grid article:last-child { border-right: 0; }

.source-map-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  color: var(--ops-blue-dark);
  background: #e6efff;
  border-radius: 5px;
  font-family: var(--ops-mono);
  font-size: 10px;
  font-weight: 600;
}

.source-map-grid article:nth-child(2) span { color: #a83d1f; background: #ffebe5; }
.source-map-grid article:nth-child(3) span { color: #087452; background: #dff7ef; }
.source-map-grid article:nth-child(4) span { color: #765800; background: #fff4bf; }

.source-map-grid h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.source-map-grid p {
  margin: 0;
  color: var(--ops-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ops-pricing {
  padding-bottom: 130px;
}

.pricing-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-bottom: 52px;
}

.pricing-head h2 { max-width: 900px; }

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

.price-card {
  position: relative;
  min-height: 590px;
  padding: 34px;
  border-radius: 8px;
}

.price-card.free {
  background: #ffffff;
  border: 1px solid var(--ops-line-strong);
}

.price-card.team {
  color: #ffffff;
  background: var(--ops-blue);
}

.price-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 54px;
}

.price-label span {
  font-family: var(--ops-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-label em {
  padding: 6px 8px;
  color: #087452;
  background: #e2f7ef;
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.team .price-label em {
  color: #ffe69a;
  background: rgba(255, 255, 255, 0.12);
}

.price-card h3 {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-height: 84px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ops-line);
}

.team .price { border-bottom-color: rgba(255, 255, 255, 0.25); }

.price strong {
  font-size: 46px;
  line-height: 1;
}

.price span {
  max-width: 190px;
  color: var(--ops-muted);
  font-size: 11px;
  line-height: 1.5;
}

.team .price span { color: #c7d7ff; }

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.5;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ops-green);
  font-weight: 800;
}

.team li::before { color: #9af0d4; }

.price-card > a {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ops-ink);
  border-radius: var(--ops-radius);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.team > a { color: var(--ops-ink); background: #ffffff; }

.ops-request {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  padding: 120px max(28px, calc((100vw - 1384px) / 2));
  background: #dbe6f5;
  border-top: 1px solid var(--ops-line-strong);
}

.request-copy h2 {
  margin-bottom: 24px;
}

.request-copy > p:not(.ops-kicker) {
  margin: 0 0 38px;
  color: var(--ops-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-lines {
  display: grid;
  border-top: 1px solid var(--ops-line-strong);
}

.contact-lines a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 70px;
  color: var(--ops-ink);
  border-bottom: 1px solid var(--ops-line-strong);
  text-decoration: none;
}

.contact-lines span {
  color: var(--ops-muted);
  font-family: var(--ops-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.contact-lines strong { font-size: 14px; }

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--ops-line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(27, 41, 61, 0.12);
}

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

.lead-form label > span {
  color: var(--ops-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: var(--ops-ink);
  background: #f5f7fa;
  border: 1px solid var(--ops-line);
  border-radius: var(--ops-radius);
  font-size: 14px;
  resize: vertical;
}

.lead-form textarea { min-height: 108px; }

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--ops-blue);
  outline: 3px solid rgba(47, 111, 247, 0.12);
}

.form-wide { grid-column: 1 / -1; }

.form-submit {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.form-submit p {
  max-width: 360px;
  margin: 0;
  color: var(--ops-muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-submit button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-width: 210px;
  min-height: 52px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ops-blue);
  border-radius: var(--ops-radius);
  font-size: 13px;
  font-weight: 800;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--ops-green);
  font-size: 11px;
  font-weight: 700;
}

.ops-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 34px;
  align-items: center;
  min-height: 104px;
  padding: 22px 28px 32px;
  color: #bdc6d4;
  background: var(--ops-ink);
  font-size: 11px;
}

.ops-footer .ops-brand,
.ops-footer > a { color: #ffffff; }

.ops-footer > a:not(.ops-brand) { text-decoration: none; }

.ops-footer p,
.ops-footer span { margin: 0; }

@keyframes opsPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.84); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes cargoMove {
  0% { left: 0; opacity: 0; }
  14% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 62px; opacity: 0; }
}

@keyframes outputMove {
  from { left: -12px; }
  to { left: 58px; }
}

@media (max-width: 1180px) {
  .ops-header-actions .text-link:first-child { display: none; }

  .ops-hero-copy { width: 53%; }
  .ops-hero h1 { font-size: 60px; }
  .ops-lead { font-size: 17px; }

  .pipeline-stage {
    right: -180px;
    width: 720px;
    opacity: 0.88;
  }

  .ops-section-head,
  .source-map-head {
    grid-template-columns: 150px 1fr;
  }

  .ops-section-head > span,
  .source-map-head > p:last-child {
    grid-column: 2;
    max-width: 650px;
  }

  .ops-workspace { grid-template-columns: 1fr; }
  .workspace-copy { padding-bottom: 36px; }
  .workspace-tool { margin-top: 20px; }
  .ops-request { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ops-header {
    grid-template-columns: 1fr auto;
    padding: 10px 18px;
  }

  .ops-header .concept-switcher {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 120;
    transform: translateX(-50%);
  }

  .ops-header-actions .text-link { display: none; }

  .ops-hero {
    height: auto;
    max-height: none;
    padding-bottom: 54px;
  }

  .ops-hero-copy {
    width: 100%;
    padding: 72px 24px 52px;
  }

  .ops-hero h1 { max-width: 12ch; font-size: 56px; }

  .pipeline-stage {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 36px);
    min-width: 0;
    height: auto;
    min-height: 880px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }

  .source-cluster {
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr 1fr;
    width: auto;
    padding: 18px;
  }

  .pipeline-tracks,
  .output-track { display: none; }

  .rules-node {
    top: 450px;
    left: 50%;
    width: calc(100% - 36px);
    transform: translateX(-50%);
  }

  .rules-node::after {
    content: "↓";
    position: absolute;
    right: 18px;
    bottom: -42px;
    color: var(--ops-green);
    font-size: 24px;
  }

  .ati-node {
    top: 690px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .ati-node .ati-row { display: inline-block; width: 33.333%; vertical-align: top; }

  .ops-proof { grid-template-columns: 1fr; }
  .ops-proof > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

  .ops-outcomes,
  .ops-pricing { width: calc(100% - 36px); padding: 82px 0; }

  .ops-section-head,
  .source-map-head,
  .pricing-head { grid-template-columns: 1fr; }

  .ops-section-head > span,
  .source-map-head > p:last-child { grid-column: auto; }

  .outcome-row {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
    padding: 28px 0;
  }

  .outcome-row p,
  .outcome-row strong { grid-column: 2; }

  .source-map-grid { grid-template-columns: 1fr 1fr; }
  .source-map-grid article:nth-child(2) { border-right: 0; }
  .source-map-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ops-line-strong); }

  .pricing-grid { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }

  .ops-footer {
    grid-template-columns: 1fr auto;
    padding-bottom: 90px;
  }
}

@media (max-width: 620px) {
  .ops-brand { font-size: 16px; }
  .ops-logo { width: 32px; height: 32px; }

  .ops-header-actions .compact-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 11px;
  }

  .ops-hero-copy { padding-top: 54px; }
  .ops-hero h1 { font-size: 42px; line-height: 1.02; }
  .ops-lead { font-size: 16px; }

  .ops-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ops-primary,
  .ops-secondary { width: 100%; }

  .hero-promises { gap: 12px; }

  .pipeline-stage { min-height: 1060px; }

  .source-cluster { grid-template-columns: 1fr; }

  .source-card { min-height: 72px; }

  .rules-node { top: 430px; }
  .ati-node { top: 742px; }
  .ati-node .ati-row { display: block; width: 100%; }

  .ops-section-head h2,
  .pricing-head h2,
  .workspace-copy h2,
  .source-map-head h2,
  .request-copy h2 { font-size: 36px; }

  .workspace-copy { padding: 76px 18px 34px; }

  .workspace-tool {
    width: calc(100% - 36px);
    margin-bottom: 70px;
  }

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

  .scope-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
  }

  .workspace-tool > footer {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .source-map { padding: 82px 18px; }
  .source-map-grid { grid-template-columns: 1fr; }
  .source-map-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--ops-line-strong); }
  .source-map-grid article:last-child { border-bottom: 0; }
  .source-map-grid span { margin-bottom: 34px; }

  .price-card { min-height: 620px; padding: 24px; }
  .price-card > a { right: 24px; bottom: 24px; left: 24px; }
  .price-label { margin-bottom: 38px; }
  .price { align-items: flex-start; flex-direction: column; gap: 10px; }
  .price strong { font-size: 38px; }

  .ops-request { gap: 52px; padding: 82px 18px; }
  .lead-form { padding: 20px; }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button { width: 100%; }

  .ops-footer { grid-template-columns: 1fr; gap: 18px; }
}
