:root {
  color-scheme: dark;
  --bg: #0d1117;
  --panel: #161b22;
  --panel-2: #111923;
  --line: rgba(201, 230, 242, 0.14);
  --line-strong: rgba(214, 238, 248, 0.26);
  --text: #f6fbff;
  --muted: #91a5b3;
  --soft: #cbd8df;
  --cyan: #00a3e0;
  --cyan-strong: #52d6ff;
  --silver: #d8e0e6;
  --graphite: #161b22;
  --success: #9df7cf;
  --warn: #ffd88a;
  --danger: #ff8e9b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 163, 224, 0.18), transparent 30rem),
    linear-gradient(180deg, #0d1117 0%, #0a0f15 44%, #06090e 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(178, 216, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 216, 232, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

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

button,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 5, 9, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand img,
.panel-header img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(232, 238, 241, 0.54);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(0, 163, 224, 0.18);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.launch-button,
.primary-action,
.secondary-action,
.cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
}

.launch-button {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid rgba(82, 214, 255, 0.7);
  color: var(--text);
  background: rgba(0, 163, 224, 0.14);
  box-shadow: 0 0 28px rgba(0, 163, 224, 0.24);
}

.hero,
.preview-band,
.features,
.workflow,
.app-shell,
.cta-band,
.split-band {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 54px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(88vh - 78px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.96) 0%, rgba(13, 17, 23, 0.82) 38%, rgba(13, 17, 23, 0.28) 78%),
    linear-gradient(180deg, rgba(13, 17, 23, 0.12), rgba(13, 17, 23, 0.92));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 50%;
  filter: saturate(0.94) contrast(1.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 6.1vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: var(--cyan-strong);
}

h1 strong {
  max-width: 740px;
  color: var(--text);
  font-weight: 850;
}

h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.hero-copy {
  padding-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 34px;
}

.hero-metrics div {
  min-height: 78px;
  border: 1px solid rgba(201, 230, 242, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(13, 17, 23, 0.54);
  backdrop-filter: blur(14px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.primary-action {
  min-width: 140px;
  border: 1px solid rgba(82, 214, 255, 0.88);
  padding: 0 20px;
  color: var(--text);
  background: rgba(0, 163, 224, 0.18);
  box-shadow: 0 0 26px rgba(0, 163, 224, 0.22);
  cursor: pointer;
}

.secondary-action {
  min-width: 140px;
  border: 1px solid var(--line-strong);
  padding: 0 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  inset: 10%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(192, 224, 238, 0.12);
  background-image:
    linear-gradient(rgba(176, 217, 235, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 217, 235, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-visual::after {
  inset: 22%;
  border-color: rgba(135, 221, 255, 0.26);
  background: none;
  transform: rotate(45deg);
}

.orbit {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(233, 244, 249, 0.42);
  border-radius: 50%;
}

.orbit.outer {
  border-width: 10px;
  border-color: rgba(232, 238, 241, 0.8) rgba(232, 238, 241, 0.18);
  filter: drop-shadow(0 0 38px rgba(135, 221, 255, 0.16));
}

.orbit.inner {
  inset: 17%;
  border-style: dashed;
  border-color: rgba(180, 218, 232, 0.28);
  animation: spin 24s linear infinite;
}

.logo-stage {
  position: absolute;
  inset: 16%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(18, 26, 34, 0.94), rgba(5, 8, 13, 0.94));
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.05), var(--shadow);
}

.logo-stage img {
  width: 72%;
  height: 72%;
  filter: drop-shadow(0 0 34px rgba(106, 214, 255, 0.35));
}

.signal-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 24px rgba(135, 221, 255, 0.65);
}

.node-a {
  top: 24%;
  left: 19%;
}

.node-b {
  right: 15%;
  top: 43%;
  background: var(--cyan);
}

.node-c {
  bottom: 23%;
  left: 32%;
  background: #a8b7c2;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.split-band p {
  color: var(--muted);
  line-height: 1.7;
}

.product-preview {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 270px;
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(16, 24, 32, 0.95), rgba(5, 8, 13, 0.96));
  box-shadow: var(--shadow);
}

.mock-panel,
.dashboard-panel,
.telemetry-stream,
.registry-card,
.verification-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.mock-panel {
  padding: 18px;
}

.panel-title {
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.fleet-row strong,
.fleet-row span:last-child {
  font-size: 0.92rem;
}

.fleet-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.robot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 16px rgba(157, 247, 207, 0.65);
}

.robot-dot.standby {
  background: var(--cyan);
}

.robot-dot.warning {
  background: var(--warn);
}

.preview-map svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.route-line {
  filter: drop-shadow(0 0 12px rgba(56, 200, 255, 0.7));
}

.waypoints circle {
  fill: #dff6ff;
  stroke: #57ceff;
  stroke-width: 4;
}

.moving-node {
  offset-path: path("M72 276 C152 232 184 96 272 126 S410 252 534 104");
  animation: mapTravel 7s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(135, 221, 255, 0.9));
}

.fixed-a rect,
.fixed-b rect {
  fill: rgba(216, 224, 230, 0.92);
  stroke: var(--cyan);
  stroke-width: 2;
}

.certificate-stamp {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(157, 247, 207, 0.5);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

dl {
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 14px;
  color: var(--text);
  font-weight: 700;
}

.split-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-band > div,
.feature-grid article {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.feature-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    #161b22;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  transform: rotateX(2deg) rotateY(-2deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.feature-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(112, 203, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 203, 238, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.feature-grid article:hover {
  border-color: rgba(82, 214, 255, 0.45);
  box-shadow: 0 30px 90px rgba(0, 163, 224, 0.14);
  transform: rotateX(0deg) rotateY(0deg) translateY(-4px);
}

.feature-grid h3,
.feature-grid p,
.feature-icon {
  position: relative;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 54px;
  border: 1px solid rgba(82, 214, 255, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 163, 224, 0.3), transparent 44%),
    #0d1117;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.signal-icon::before {
  inset: 14px 9px;
  border-top: 2px solid var(--cyan-strong);
  border-bottom: 2px solid rgba(157, 247, 207, 0.72);
}

.signal-icon::after {
  top: 17px;
  left: 24px;
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: var(--cyan-strong);
  box-shadow: -13px 10px 0 rgba(255, 216, 138, 0.86), 13px -2px 0 rgba(157, 247, 207, 0.82);
}

.learning-icon::before {
  inset: 14px;
  border: 2px solid var(--cyan-strong);
  border-radius: 50%;
}

.learning-icon::after {
  inset: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan-strong), rgba(157, 247, 207, 0.8));
  box-shadow: -15px 0 0 rgba(0, 163, 224, 0.35), 15px 0 0 rgba(255, 216, 138, 0.45);
}

.navigation-icon::before {
  left: 13px;
  top: 13px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--cyan-strong);
  transform: rotate(45deg);
}

.navigation-icon::after {
  left: 23px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 18px -18px 0 rgba(255, 216, 138, 0.82);
}

.route-icon::before {
  left: 12px;
  top: 27px;
  width: 31px;
  height: 2px;
  background: var(--cyan-strong);
  transform: rotate(-26deg);
}

.route-icon::after {
  left: 9px;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 29px 20px 0 var(--cyan-strong), 16px 5px 0 rgba(255, 216, 138, 0.86);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.workflow-steps div {
  min-height: 130px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 750;
}

.workflow-steps div:last-child {
  border-right: 0;
}

.workflow-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.8rem;
}

.proof-layer {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 22%, rgba(157, 247, 207, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(22, 27, 34, 0.58), rgba(13, 17, 23, 0.28));
}

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

.proof-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(0, 163, 224, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
}

.proof-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border: 1px solid rgba(82, 214, 255, 0.44);
  border-radius: 8px;
  color: var(--cyan-strong);
  font-weight: 850;
}

.proof-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.dashboard-heading {
  margin-bottom: 22px;
}

.dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 310px;
  grid-template-rows: minmax(540px, auto) auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    #060a10;
  box-shadow: var(--shadow);
}

.dashboard-panel {
  padding: 18px;
}

.panel-header {
  margin-bottom: 18px;
}

.panel-header div {
  display: grid;
}

.panel-header span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.connection-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(135, 221, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(135, 221, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.connection-card.connected {
  border-color: rgba(157, 247, 207, 0.24);
  background:
    linear-gradient(135deg, rgba(157, 247, 207, 0.1), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.connection-status {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.connection-card strong,
.connection-card small {
  display: block;
}

.connection-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.connection-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 15px rgba(255, 142, 155, 0.5);
}

.connected .connection-dot {
  background: var(--success);
  box-shadow: 0 0 15px rgba(157, 247, 207, 0.7);
}

.connection-action {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(135, 221, 255, 0.32);
  border-radius: 8px;
  background: rgba(135, 221, 255, 0.1);
  color: #dff6ff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.connection-action:hover {
  border-color: rgba(135, 221, 255, 0.68);
  background: rgba(135, 221, 255, 0.16);
  transform: translateY(-1px);
}

.connection-action-icon,
.connection-action::before {
  width: 12px;
  height: 2px;
  content: "";
  background: var(--cyan);
}

.connection-action::before {
  position: absolute;
  left: 18px;
  transform: rotate(90deg);
}

.connected .connection-action {
  border-color: rgba(255, 142, 155, 0.28);
  background: rgba(255, 142, 155, 0.07);
  color: #ffdce0;
}

.connected .connection-action::before {
  opacity: 0;
}

.connected .connection-action-icon {
  background: var(--danger);
}

.fleet-list {
  display: grid;
  gap: 10px;
}

.robot-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.robot-card.selected {
  border-color: rgba(135, 221, 255, 0.52);
  background: rgba(135, 221, 255, 0.08);
}

.robot-card strong,
.robot-card small {
  display: block;
}

.robot-card small {
  margin-top: 4px;
  color: var(--muted);
}

.battery {
  width: 48px;
  height: 10px;
  margin-top: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}

.battery span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--success));
}

.mission-map-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.map-toolbar strong,
.map-toolbar span {
  display: block;
}

.map-toolbar span {
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.metric-strip span {
  min-width: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.metric-strip b {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.live-map {
  position: relative;
  min-height: 466px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(135, 221, 255, 0.09), transparent 42%),
    #070b11;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 230, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 230, 242, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.mission-svg path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(56, 200, 255, 0.65));
}

.mission-svg .secondary-path {
  stroke: rgba(210, 230, 238, 0.3);
  stroke-width: 2;
  stroke-dasharray: 9 10;
  filter: none;
}

.waypoint {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 20px rgba(135, 221, 255, 0.6);
}

.waypoint-a {
  left: 12%;
  top: 77%;
}

.waypoint-b {
  left: 42%;
  top: 36%;
}

.waypoint-c {
  left: 64%;
  top: 66%;
}

.waypoint-d {
  left: 84%;
  top: 25%;
}

.robot-unit {
  position: absolute;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: linear-gradient(135deg, #ecf5fa, #6bd3ff);
  box-shadow: 0 0 22px rgba(135, 221, 255, 0.55);
}

.robot-unit span {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #061018;
}

.robot-moving {
  left: 10%;
  top: 75%;
}

.dashboard[data-state="running"] .robot-moving {
  animation: dashboardTravel 6s ease-in-out infinite;
}

.robot-static-a {
  left: 38%;
  top: 12%;
  opacity: 0.78;
}

.robot-static-b {
  right: 18%;
  top: 29%;
  opacity: 0.78;
}

.zone-label {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--soft);
  background: rgba(3, 5, 9, 0.72);
  font-size: 0.8rem;
  font-weight: 750;
}

.zone-north {
  left: 8%;
  top: 14%;
}

.zone-south {
  right: 8%;
  bottom: 12%;
}

.mission-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-presets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.preset-button {
  min-height: 39px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: left;
  padding: 0 12px;
}

.preset-button.active {
  border-color: rgba(82, 214, 255, 0.68);
  color: var(--text);
  background: rgba(0, 163, 224, 0.12);
  box-shadow: inset 0 0 0 1px rgba(82, 214, 255, 0.08);
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: #060a10;
}

select {
  height: 43px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 104px;
  padding: 12px;
  line-height: 1.5;
}

.task-queue {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.03);
}

.task-queue strong {
  display: block;
  margin-bottom: 9px;
}

.task-queue ul,
.telemetry-stream ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-queue li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.mission-panel button + button {
  margin-top: 10px;
}

.telemetry-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px 340px;
  gap: 14px;
}

.telemetry-stream,
.registry-card,
.verification-card {
  min-height: 190px;
  padding: 18px;
}

.telemetry-stream li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.telemetry-stream time {
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.registry-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.registry-summary div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.registry-summary strong,
.registry-summary span {
  display: block;
}

.registry-summary strong {
  color: var(--text);
}

.registry-summary span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.registry-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registry-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.registry-list strong,
.registry-list span {
  display: block;
}

.registry-list strong {
  color: var(--text);
  font-size: 0.9rem;
}

.registry-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.empty-registry {
  color: var(--muted);
  font-size: 0.9rem;
}

.certificate-status {
  margin-bottom: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 11px;
  color: var(--warn);
  font-weight: 800;
}

.certificate-status.verified {
  border-color: rgba(157, 247, 207, 0.42);
  color: var(--success);
  background: rgba(157, 247, 207, 0.06);
}

.certificate-status.anchored {
  border-color: rgba(82, 214, 255, 0.48);
  color: var(--cyan-strong);
  background: rgba(0, 163, 224, 0.08);
}

.certificate-actions {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.certificate-actions button {
  min-height: 40px;
}

.secondary-action.subtle {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.025);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.cta-band {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
}

.cta-band img {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(232, 238, 241, 0.54);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0, 163, 224, 0.18);
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cta-links a {
  border: 1px solid var(--line-strong);
  padding: 0 16px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.03);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mapTravel {
  0%,
  100% {
    offset-distance: 0%;
  }
  50% {
    offset-distance: 100%;
  }
}

@keyframes dashboardTravel {
  0%,
  100% {
    left: 10%;
    top: 75%;
  }
  36% {
    left: 42%;
    top: 36%;
  }
  68% {
    left: 64%;
    top: 66%;
  }
  86% {
    left: 84%;
    top: 25%;
  }
}

@media (max-width: 1160px) {
  .hero,
  .product-preview,
  .dashboard,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .telemetry-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .dashboard {
    grid-template-rows: auto;
  }

  .mission-map-panel {
    min-height: 540px;
  }

  .cta-links {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split-band,
  .feature-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps div:last-child {
    border-bottom: 0;
  }

  .map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-strip {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .preview-band,
  .features,
  .workflow,
  .app-shell,
  .cta-band,
  .split-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  .launch-button {
    min-width: 0;
    padding: 0 12px;
  }

  .brand span {
    display: none;
  }

  .live-map {
    min-height: 390px;
  }

  .robot-unit {
    width: 32px;
    height: 32px;
  }
}
