/* BotBoots shared site styles. */
/* Fingerprinted homepage styles. Keep styles-v3.css as a compatibility import. */
:root {
  --ink: #0b0c0d;
  --paper: #f3f1eb;
  --paper-deep: #e7e4dc;
  --white: #ffffff;
  --muted: #6c6d68;
  --line: rgba(11, 12, 13, 0.15);
  --acid: #c9ff3f;
  --acid-dark: #a8e900;
  --orange: #ff5f38;
  --electric: #66ddff;
  --violet: #9a83ff;
  --radius: 22px;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.wordmark-mark { width: 29px; height: 29px; fill: currentColor; }
.wordmark-mark .mark-cut { fill: none; stroke: var(--acid); stroke-linecap: round; stroke-width: 1.6; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: #4c4d49;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--ink); }

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 51px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.button-small { min-height: 39px; padding: 0 17px; font-size: 13px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #27292b; }
.button-accent { background: var(--acid); color: var(--ink); }
.button-accent:hover { background: var(--acid-dark); }
.button-ghost { border-color: rgba(255, 255, 255, 0.25); color: var(--white); background: transparent; }
.button-ghost:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.07); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--acid); }
.button-full { width: 100%; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(48px, 7vw, 120px);
  min-height: 720px;
  padding: clamp(72px, 9vw, 130px) max(24px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero-copy, .hero-visual { position: relative; z-index: 1; min-width: 0; }
.hero-copy { align-self: center; max-width: 820px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-api-status { width: fit-content; text-decoration: none; }
.hero-api-status:hover { color: var(--acid); }
.eyebrow-light { color: rgba(255,255,255,.64); }
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201,255,63,.12);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.92;
}
.hero h1 span { color: var(--acid); }
.hero-lede {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.64);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 43px; }
.api-live-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: rgba(255,255,255,.52); font-family: var(--mono); font-size: 10px; text-decoration: none; text-transform: uppercase; }
.api-live-link span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); }
.api-live-link:hover { color: var(--white); }

.hero-visual {
  align-self: center;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #151719;
  color: var(--white);
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  overflow: hidden;
}

.dispatch-visual {
  position: relative;
  background: #101214;
  box-shadow: 0 42px 120px rgba(0,0,0,.48), 0 0 0 1px rgba(201,255,63,.025);
}
.dispatch-topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(16,18,20,.88);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.dispatch-topline span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); }
.dispatch-topline > * { min-width: 0; white-space: nowrap; }
.dispatch-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201,255,63,.1);
  animation: live-dot 1.8s ease-in-out infinite;
}
.dispatch-topline strong { color: var(--acid); font-size: 9px; font-weight: 700; }
.dispatch-stage { position: relative; aspect-ratio: 620 / 520; overflow: hidden; }
.dispatch-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 35%, rgba(7,8,9,.28) 100%);
}
.dispatch-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-surface { fill: #111416; }
.map-grid-line { fill: none; stroke: rgba(255,255,255,.08); stroke-width: .7; }
.terrain-line { fill: none; stroke: rgba(102,221,255,.08); stroke-width: 1; }
.terrain-line-2 { stroke: rgba(201,255,63,.075); }
.terrain-line-3 { stroke: rgba(154,131,255,.07); }
.dispatch-routes path {
  fill: none;
  stroke: rgba(255,255,255,.24);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 3 8;
  animation: route-flow 2.4s linear infinite;
}
.dispatch-routes path:nth-child(2n) { stroke: rgba(102,221,255,.3); animation-duration: 3s; }
.dispatch-routes path:nth-child(3n) { stroke: rgba(255,95,56,.3); animation-duration: 2s; }
.pulse-ring {
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: city-pulse 3.6s ease-out infinite;
}
.pulse-ring-2 { animation-delay: 1.2s; }
.pulse-ring-3 { animation-delay: 2.4s; }
.city-cluster rect { fill: var(--acid); }
.city-cluster path { fill: none; stroke: var(--acid); stroke-linecap: round; stroke-width: 2; }
.city-cluster .city-window { stroke: #101214; stroke-width: 2; }
.site-node circle { fill: #15191b; stroke: rgba(255,255,255,.5); stroke-width: 1.3; animation: site-beacon 3s ease-in-out infinite; }
.site-node path, .site-node rect { fill: none; stroke: var(--white); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.site-solar circle, .site-wind circle { stroke: var(--electric); }
.site-robotics circle { stroke: var(--orange); }
.site-industrial circle { stroke: var(--acid); }
.site-solar circle { animation-delay: -.8s; }
.site-robotics circle { animation-delay: -1.4s; }
.site-wind circle { animation-delay: -2.1s; }
.site-industrial circle { animation-delay: -2.7s; }
.motion-agent > circle:first-child { filter: url(#soft-glow); }
.motion-agent .agent-halo { fill: none; stroke: currentColor; stroke-width: 1; opacity: .35; }
.agent-lime { color: var(--acid); fill: var(--acid); }
.agent-blue { color: var(--electric); fill: var(--electric); }
.agent-orange { color: var(--orange); fill: var(--orange); }
.hub-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 57%;
  display: grid;
  min-width: 112px;
  padding: 7px 10px;
  border: 1px solid rgba(201,255,63,.32);
  border-radius: 9px;
  background: rgba(11,12,13,.85);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}
.hub-label span, .hub-label small { color: rgba(255,255,255,.44); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.hub-label strong { margin: 1px 0; color: var(--acid); font-size: 13px; letter-spacing: -.025em; }
.expert-callout {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  width: 154px;
  min-height: 42px;
  padding: 6px 7px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(18,21,23,.9);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  animation: expert-float 4s ease-in-out infinite;
}
.expert-callout > div { min-width: 0; }
.expert-callout small, .expert-callout strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.expert-callout small { color: rgba(255,255,255,.42); font-family: var(--mono); font-size: 6.5px; text-transform: uppercase; }
.expert-callout strong { margin-top: 1px; font-size: 8.5px; }
.expert-callout i { color: var(--acid); font-family: var(--mono); font-size: 6px; font-style: normal; text-transform: uppercase; writing-mode: vertical-rl; }
.expert-avatar, .roster-avatar, .roster-more {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #303538;
  color: var(--white);
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: -.05em;
}
.expert-avatar { width: 28px; height: 28px; font-size: 7px; }
.avatar-lime { background: var(--acid); color: var(--ink); }
.avatar-blue { background: var(--electric); color: var(--ink); }
.avatar-orange { background: var(--orange); color: var(--white); }
.callout-construction { left: 2.5%; top: 2.5%; }
.callout-solar { right: 2.5%; top: 2.5%; animation-delay: -.8s; }
.callout-robotics { right: 1.5%; top: 44%; animation-delay: -1.8s; }
.callout-wind { left: 2%; bottom: 2.5%; animation-delay: -2.6s; }
.callout-industrial { right: 2%; bottom: 2.5%; animation-delay: -3.3s; }
.dispatch-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #15181a;
}
.expert-roster { display: flex; padding-left: 5px; }
.roster-avatar, .roster-more { width: 28px; height: 28px; margin-left: -5px; border: 2px solid #15181a; font-size: 6.5px; }
.roster-more { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.roster-copy strong, .roster-copy small { display: block; }
.roster-copy strong { font-size: 10px; }
.roster-copy small { margin-top: 2px; color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.assurance-key { display: flex; gap: 4px; }
.assurance-key span { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: rgba(255,255,255,.65); font-family: var(--mono); font-size: 6.5px; }
.assurance-key span:nth-child(2) { border-color: rgba(201,255,63,.55); color: var(--acid); }
.assurance-key span:nth-child(3) { border-color: rgba(102,221,255,.55); color: var(--electric); }

@keyframes route-flow { to { stroke-dashoffset: -22; } }
@keyframes city-pulse { 0% { opacity: .6; transform: scale(.8); } 85%, 100% { opacity: 0; transform: scale(2.55); } }
@keyframes site-beacon { 0%, 100% { stroke-opacity: .42; } 50% { stroke-opacity: 1; } }
@keyframes live-dot { 0%, 100% { opacity: .65; } 50% { opacity: 1; box-shadow: 0 0 0 8px rgba(201,255,63,0); } }
@keyframes expert-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.stream-stage {
  height: 500px;
  aspect-ratio: auto;
  background-color: #111416;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}
.stream-stage::after {
  z-index: 5;
  background: linear-gradient(#111416 0, transparent 10%, transparent 88%, #111416 100%);
}
.stream-orbit {
  position: absolute;
  z-index: 0;
  right: -125px;
  top: 18px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(102,221,255,.12);
  border-radius: 50%;
  opacity: .7;
  animation: orbit-breathe 7s ease-in-out infinite;
}
.stream-orbit::before, .stream-orbit::after, .stream-orbit span, .stream-orbit i {
  position: absolute;
  content: "";
  border: 1px solid rgba(102,221,255,.1);
  border-radius: 50%;
}
.stream-orbit::before { inset: 0 95px; }
.stream-orbit::after { inset: 95px 0; }
.stream-orbit span:first-child { inset: 42px 0; }
.stream-orbit span:nth-child(2) { inset: 0 42px; }
.stream-orbit i { inset: 50%; width: 8px; height: 8px; border: 0; background: var(--electric); box-shadow: 0 0 20px var(--electric); transform: translate(-50%, -50%); }
.stream-track {
  --stream-distance: -616px;
  --stream-distance-mobile: -588px;
  --stream-duration: 32s;
  position: absolute;
  z-index: 2;
  left: 13px;
  right: 13px;
  top: 12px;
  display: grid;
  gap: 10px;
  animation: stream-scroll var(--stream-duration) linear infinite;
  will-change: transform;
}
.stream-event {
  --event: var(--acid);
  display: grid;
  grid-template-columns: 40px minmax(95px, 1fr) minmax(115px, 1.25fr) minmax(75px, .82fr);
  gap: 10px;
  align-items: center;
  height: 78px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-left: 2px solid var(--event);
  border-radius: 12px;
  background: rgba(18,21,23,.9);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
}
.event-blue { --event: var(--electric); }
.event-orange { --event: var(--orange); }
.event-violet { --event: var(--violet); }
.stream-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--event) 60%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--event) 12%, #15191b);
  color: var(--event);
}
.stream-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.stream-case, .stream-action, .stream-return { min-width: 0; }
.stream-case small, .stream-case strong, .stream-action span, .stream-action strong, .stream-return small, .stream-return strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stream-case small, .stream-return small { color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 6.5px; letter-spacing: .04em; text-transform: uppercase; }
.stream-case strong { margin-top: 4px; font-size: 9.5px; }
.stream-action span, .stream-action strong { font-family: var(--mono); font-size: 6.5px; }
.stream-action span { color: rgba(255,255,255,.4); }
.stream-action strong { margin-top: 4px; color: rgba(255,255,255,.82); }
.stream-action i {
  position: relative;
  display: block;
  height: 1px;
  margin: 6px 0;
  overflow: visible;
  background: linear-gradient(90deg, var(--event), rgba(255,255,255,.1));
}
.stream-action i::after { position: absolute; right: 0; top: -2px; width: 5px; height: 5px; content: ""; border-top: 1px solid var(--event); border-right: 1px solid var(--event); transform: rotate(45deg); }
.stream-action b { position: absolute; left: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--event); box-shadow: 0 0 10px var(--event); animation: action-travel 2.8s ease-in-out infinite; }
.stream-event:nth-child(2n) .stream-action b { animation-delay: -1.1s; }
.stream-event:nth-child(3n) .stream-action b { animation-delay: -2s; }
.stream-return { padding-left: 9px; border-left: 1px solid rgba(255,255,255,.1); }
.stream-return strong { margin-top: 4px; color: var(--event); font-size: 8px; }
.stream-footer {
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  min-height: 62px;
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.stream-footer strong { color: var(--acid); font-size: 8px; text-align: center; }
.stream-footer i { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.12), var(--acid), rgba(255,255,255,.12)); }

@keyframes stream-scroll { to { transform: translateY(var(--stream-distance)); } }
@keyframes action-travel { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 5px); opacity: 0; } }
@keyframes orbit-breathe { 0%, 100% { opacity: .42; transform: scale(.98); } 50% { opacity: .75; transform: scale(1.02); } }

.job-proof-card { max-width: 560px; }
.visual-topline, .visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}
.visual-topline { border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); }
.job-title { display: flex; gap: 16px; align-items: center; padding: 26px 22px 24px; }
.job-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--acid);
  color: var(--ink);
}
.job-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.job-title p { margin: 0 0 3px; color: rgba(255,255,255,.48); font-size: 12px; }
.job-title h2, .job-title h3 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.job-route { padding: 0 22px 8px; }
.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.route-step > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  font-family: var(--mono);
  font-size: 9px;
}
.route-step strong, .route-step small { display: block; }
.route-step strong { font-size: 13px; }
.route-step small { margin-top: 4px; color: rgba(255,255,255,.4); font-size: 11px; }
.route-step em { color: rgba(255,255,255,.38); font-family: var(--mono); font-size: 9px; font-style: normal; text-transform: uppercase; }
.route-step.is-done > span { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.route-step.is-done em { color: var(--acid); }
.route-step.is-live > span { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 5px rgba(255,95,56,.08); }
.route-step.is-live em { color: var(--orange); }
.visual-footer { min-height: 58px; background: var(--acid); color: var(--ink); }
.visual-footer strong { font-size: 16px; letter-spacing: -.04em; }

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.signal-bar > div { display: flex; align-items: baseline; gap: 11px; padding: 25px 0; border-right: 1px solid var(--line); }
.signal-bar > div:not(:first-child) { padding-left: 28px; }
.signal-bar > div:last-child { border-right: 0; }
.signal-bar strong { font-size: 21px; letter-spacing: -.05em; }
.signal-bar span { color: var(--muted); font-size: 12px; }

.section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 165px) 0;
}
.section-intro { max-width: 720px; }
.section-intro h2, .api-copy h2, .network h2, .closing-section h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 720;
  letter-spacing: -.065em;
  line-height: .97;
}
.section-intro > p:last-child, .api-copy > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -.018em;
}

.primitive { display: grid; grid-template-columns: 1fr minmax(430px, .82fr); gap: 10vw; align-items: start; }
.deliverable-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.45); overflow: hidden; }
.deliverable-head { display: flex; justify-content: space-between; padding: 19px 22px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.availability { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 40px 1fr; align-items: center; min-height: 66px; padding: 0 22px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.check-list li:last-child { border-bottom: 0; }
.check-list span { color: #92938e; font-family: var(--mono); font-size: 9px; }

.assurance-section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 60px) 0 clamp(90px, 11vw, 160px);
}
.assurance-heading {
  display: grid;
  grid-template-columns: 1fr minmax(330px, .7fr);
  gap: 30px 10vw;
  align-items: end;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.assurance-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.assurance-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}
.assurance-heading > p:last-child { margin: 0; color: var(--muted); font-size: 16px; }
.assurance-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.assurance-levels article { display: flex; min-height: 275px; padding: 25px; flex-direction: column; border-right: 1px solid var(--line); background: rgba(255,255,255,.38); }
.assurance-levels article:last-child { border-right: 0; }
.assurance-levels article > span, .assurance-levels article small { font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.assurance-levels article > span { color: var(--orange); }
.assurance-levels h3 { margin: 65px 0 12px; font-size: 22px; letter-spacing: -.04em; }
.assurance-levels p { margin: 0; color: var(--muted); font-size: 13px; }
.assurance-levels small { margin-top: auto; padding-top: 25px; color: #8a8b86; }

.api-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .75fr); gap: 10vw; align-items: center; border-top: 1px solid var(--line); }
.api-card { border-radius: 24px; background: var(--ink); color: var(--white); box-shadow: 0 35px 90px rgba(11,12,13,.17); overflow: hidden; }
.code-window-head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 54px; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.code-window-head > span { display: flex; gap: 6px; }
.code-window-head i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); }
.code-window-head i:first-child { background: var(--orange); }
.code-window-head code { color: rgba(255,255,255,.55); font-family: var(--mono); font-size: 10px; }
.api-card pre { margin: 0; padding: 40px clamp(22px, 4vw, 52px); overflow-x: auto; color: rgba(255,255,255,.72); font-family: var(--mono); font-size: clamp(12px, 1.2vw, 15px); line-height: 1.9; }
.code-key { color: #f8f8f3; }
.code-string { color: var(--acid); }
.code-number { color: #ff9a7f; }
.code-muted { color: rgba(255,255,255,.36); }
.code-response { display: grid; grid-template-columns: 35px 1fr auto; gap: 12px; align-items: center; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.response-check { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--acid); color: var(--ink); font-weight: 900; }
.code-response strong, .code-response small { display: block; }
.code-response strong { font-family: var(--mono); font-size: 12px; }
.code-response small { margin-top: 3px; color: rgba(255,255,255,.42); font-size: 10px; }
.code-response > code { color: var(--acid); font-family: var(--mono); font-size: 11px; }
.tiny-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tiny-features span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #555650; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.process-section { border-top: 1px solid var(--line); }
.section-intro.compact { max-width: 100%; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 76px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-grid li { min-height: 285px; padding: 25px 32px 30px 0; border-right: 1px solid var(--line); }
.process-grid li:not(:first-child) { padding-left: 32px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.process-grid h3 { margin: 85px 0 12px; font-size: 22px; letter-spacing: -.04em; }
.process-grid p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; }

.job-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: 10vw;
  align-items: center;
  border-top: 1px solid var(--line);
}
.job-proof-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 720;
  letter-spacing: -.065em;
  line-height: .97;
}
.job-proof-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 18px; letter-spacing: -.018em; }
.job-proof-card { justify-self: end; }

.network {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
  padding: clamp(90px, 11vw, 155px) max(24px, calc((100vw - 1440px) / 2));
  background: var(--orange);
  color: var(--white);
}
.network-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 34px; color: rgba(255,255,255,.74); font-size: 18px; }
.network-criteria { align-self: center; border-top: 1px solid rgba(255,255,255,.3); }
.network-criteria > p { margin: 18px 0; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.network-criteria ul { margin: 0; padding: 0; list-style: none; }
.network-criteria li { display: grid; grid-template-columns: 42px 1fr; min-height: 68px; align-items: center; border-top: 1px solid rgba(255,255,255,.2); font-size: 14px; font-weight: 600; }
.network-criteria li span { font-family: var(--mono); font-size: 9px; opacity: .55; }
.network-note { margin-top: 24px; color: rgba(255,255,255,.6); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.closing-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
}
.closing-section h2 { font-size: clamp(44px, 6vw, 78px); }
.closing-section .button { flex: 0 0 auto; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.wordmark-footer { color: var(--ink); }
.site-footer p { margin: 0; text-align: center; }
.site-footer > div { display: flex; justify-content: flex-end; gap: 18px; }
.site-footer a, .site-footer button { border: 0; padding: 0; background: none; color: inherit; font-size: inherit; text-decoration: none; cursor: pointer; }
.site-footer a:hover, .site-footer button:hover { color: var(--ink); }

.modal {
  width: min(650px, calc(100% - 28px));
  max-height: min(900px, calc(100vh - 30px));
  padding: 0;
  border: 0;
  border-radius: 25px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.modal::backdrop { background: rgba(5,6,7,.78); backdrop-filter: blur(6px); }
.modal-shell { position: relative; padding: clamp(28px, 5vw, 50px); }
.modal-close { position: absolute; right: 20px; top: 17px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 23px; cursor: pointer; }
.modal-kicker { margin-bottom: 20px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.modal h2 { margin: 0; font-size: clamp(38px, 7vw, 56px); letter-spacing: -.06em; line-height: 1; }
.modal h2 + p { max-width: 500px; margin: 18px 0 30px; color: var(--muted); }
.lead-form { display: grid; gap: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.lead-form label { display: grid; gap: 7px; color: #41423f; font-size: 11px; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  font-size: 14px;
  outline: none;
}
.lead-form input, .lead-form select { height: 48px; padding: 0 13px; }
.lead-form textarea { min-height: 104px; padding: 12px 13px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--ink); }
.lead-form .button { margin-top: 4px; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-status { display: block; min-height: 15px; color: var(--ink); font-weight: 700; }
.form-status.is-error { color: #ba3118; }
.trap { position: absolute !important; left: -10000px !important; }
.modal-privacy { width: min(560px, calc(100% - 28px)); }
.modal-privacy p { color: var(--muted); }
.modal-privacy a { font-weight: 700; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 65px; padding-bottom: 85px; }
  .hero-copy { padding-top: 10px; }
  .hero-visual { justify-self: start; max-width: 620px; }
  .primitive, .api-section, .job-proof-section, .network { grid-template-columns: 1fr; gap: 70px; }
  .assurance-heading { grid-template-columns: 1fr; }
  .deliverable-card { max-width: 660px; }
  .api-card { max-width: 760px; }
  .job-proof-card { justify-self: start; }
  .network-criteria { max-width: 700px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@media (max-width: 680px) {
  .site-header, .signal-bar, .section, .assurance-section, .closing-section, .site-footer { width: min(100% - 32px, 1440px); }
  .site-header { padding: 16px 0; }
  .site-header > .button { display: none; }
  .hero { display: block; min-height: auto; padding: 75px 16px 65px; }
  .hero h1 { font-size: clamp(48px, 13vw, 64px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { margin-top: 65px; border-radius: 19px; }
  .dispatch-visual { width: 100%; max-width: 100%; }
  .dispatch-topline { min-height: 43px; padding: 0 11px; }
  .dispatch-topline strong { font-size: 7px; }
  .dispatch-stage { aspect-ratio: 1 / .96; }
  .expert-callout { grid-template-columns: 23px minmax(0, 1fr); width: 106px; min-height: 35px; padding: 5px; }
  .expert-avatar { width: 23px; height: 23px; font-size: 6px; }
  .expert-callout small { font-size: 5.5px; }
  .expert-callout strong { font-size: 7px; }
  .expert-callout i { display: none; }
  .callout-construction { left: 1.5%; top: 2%; }
  .callout-solar { right: 1.5%; top: 2%; }
  .callout-robotics { right: 1%; top: 45%; }
  .callout-wind { left: 1%; bottom: 2%; }
  .callout-industrial { right: 1%; bottom: 2%; }
  .hub-label { top: 56%; min-width: 88px; padding: 5px 7px; }
  .hub-label strong { font-size: 11px; }
  .hub-label span, .hub-label small { font-size: 5.5px; }
  .dispatch-footer { grid-template-columns: auto 1fr; gap: 8px; min-height: 57px; padding: 9px 10px; }
  .roster-avatar, .roster-more { width: 24px; height: 24px; }
  .roster-copy strong { font-size: 8px; }
  .roster-copy small { font-size: 6px; }
  .assurance-key { display: none; }
  .stream-stage { height: 440px; aspect-ratio: auto; }
  .stream-track { left: 8px; right: 8px; gap: 8px; animation-name: stream-scroll-mobile; }
  .stream-event { grid-template-columns: 32px minmax(0, 1fr) minmax(104px, 1.05fr); gap: 7px; height: 76px; padding: 7px; border-radius: 10px; }
  .stream-icon { width: 30px; height: 30px; border-radius: 8px; }
  .stream-icon svg { width: 18px; }
  .stream-case small, .stream-action span { font-size: 5.5px; }
  .stream-case strong { font-size: 7.5px; }
  .stream-action strong { font-size: 6px; }
  .stream-return { display: none; }
  .stream-footer { grid-template-columns: 1fr auto 1.15fr auto 1.2fr; gap: 4px; min-height: 57px; padding: 8px; font-size: 5.5px; text-align: center; }
  .stream-footer strong { font-size: 6.2px; }
  .stream-footer i { width: 9px; }
  .route-step { grid-template-columns: 34px 1fr; }
  .route-step em { display: none; }
  .signal-bar { grid-template-columns: 1fr 1fr; }
  .signal-bar > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
  .signal-bar > div:not(:first-child) { padding-left: 15px; }
  .signal-bar > div:nth-child(2) { border-right: 0; }
  .section { padding: 90px 0; }
  .primitive, .api-section, .job-proof-section { gap: 52px; }
  .section-intro h2, .api-copy h2, .network h2, .closing-section h2 { font-size: clamp(42px, 13vw, 60px); }
  .deliverable-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .check-list li { min-height: 72px; padding: 0 15px; }
  .assurance-levels { grid-template-columns: 1fr; }
  .assurance-levels article { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .assurance-levels article:last-child { border-bottom: 0; }
  .api-card pre { font-size: 11px; }
  .code-response { padding: 16px; }
  .process-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .process-grid li { min-height: auto; padding: 24px 0 40px !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid h3 { margin-top: 44px; }
  .network { gap: 60px; padding: 90px 16px; }
  .closing-section { align-items: stretch; flex-direction: column; padding: 95px 0; }
  .closing-section .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .site-footer > div { justify-content: flex-start; flex-wrap: wrap; }
  .field-row { grid-template-columns: 1fr; }
  .modal-shell { padding: 31px 20px 26px; }
}

@keyframes stream-scroll-mobile { to { transform: translateY(var(--stream-distance-mobile)); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
  .motion-agent { display: none; }
}
