:root {
  --ink: #2d2f32;
  --muted: #6b7075;
  --soft: #f1f2f2;
  --line: rgba(77, 77, 79, 0.14);
  --surface: #ffffff;
  --surface-warm: #f7f8f8;
  --brand-green: #12e677;
  --brand-grey: #4d4d4f;
  --brand-french-grey: #939598;
  --brand-stone-white: #f1f2f2;
  --accent: #0fbf68;
  --accent-deep: #078f4d;
  --blue: #305f72;
  --green: #557b43;
  --gold: #12e677;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfa;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 28px;
  flex: 0 0 54px;
  overflow: hidden;
  color: transparent;
  background: url("图片/00-brand/yuniverse-mark-green-nav.png") center / contain no-repeat;
  font-size: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  font-size: 10px;
  letter-spacing: 0;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-size: 14px;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 92vh;
  max-height: 820px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-poster,
.hero-poster img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  opacity: 0;
  background: #101820;
  transition: opacity 360ms ease;
}

.hero-poster {
  z-index: 0;
}

.hero-media {
  z-index: 1;
}

.hero.is-video-ready .hero-media video {
  opacity: 1;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.86) 0%, rgba(7, 12, 18, 0.62) 38%, rgba(7, 12, 18, 0.16) 72%),
    linear-gradient(0deg, rgba(7, 12, 18, 0.82) 0%, rgba(7, 12, 18, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  min-height: 680px;
  height: 92vh;
  max-height: 820px;
  margin: 0 auto;
  padding-top: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: var(--brand-green);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  font-weight: 800;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.65vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: #101316;
  background: var(--accent);
}

.button-primary:hover {
  color: #fff;
  background: var(--accent-deep);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.hero-metrics div {
  min-height: 96px;
  padding: 16px;
  background: rgba(10, 16, 23, 0.62);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin-bottom: 4px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-heading h2,
.dispatch-copy h2,
.cta-section h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section-heading p,
.dispatch-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
}

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

.product-card {
  position: relative;
  min-height: 420px;
  grid-column: span 2;
  overflow: hidden;
  background: #12151b;
}

.product-card-large {
  min-height: 540px;
  grid-column: span 3;
}

.product-card-wide {
  grid-column: span 4;
}

.product-tier-title {
  grid-column: 1 / -1;
  display: block;
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
}

.product-tier-title span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.product-tier-title strong {
  display: block;
  max-width: 1080px;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1.14;
  text-align: left;
  text-wrap: balance;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 10, 15, 0.82), rgba(6, 10, 15, 0.08) 58%);
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card-content {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}

.product-card-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
}

.product-card-content h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.8vw, 36px);
}

.product-card-content p {
  max-width: 520px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.product-card-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card-content li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.card-cta {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-green);
  font-weight: 800;
}

.card-cta:hover {
  color: #fff;
}

.card-cta.dark {
  color: var(--accent);
}

.card-cta.dark:hover {
  color: var(--accent-deep);
}

.performance-section {
  width: 100%;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--surface-warm);
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.performance-visual {
  min-height: 460px;
  overflow: hidden;
  background: #d8d8d8;
}

.performance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 21, 27, 0.12);
}

.metric-panel article {
  min-height: 220px;
  padding: 26px;
  background: #fff;
}

.metric-panel .metric-wide {
  grid-column: span 2;
  min-height: 160px;
  color: #fff;
  background: #151a20;
}

.metric-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.metric-panel span {
  color: var(--muted);
  font-size: 16px;
}

.metric-panel .metric-wide strong {
  color: var(--brand-green);
}

.metric-panel .metric-wide span {
  color: rgba(255, 255, 255, 0.78);
}

.proof-video-section {
  padding-top: 92px;
}

.proof-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 22px;
  align-items: stretch;
}

.proof-video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f151c;
}

.proof-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #0f151c;
}

.proof-video-copy {
  padding: 30px;
  color: #fff;
  background: #151a20;
}

.proof-video-copy-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.proof-video-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 850;
}

.proof-video-copy-light span {
  color: var(--accent);
}

.proof-video-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.proof-video-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-video-copy-light p {
  color: var(--muted);
}

.proof-video-copy dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  background: rgba(255, 255, 255, 0.14);
}

.proof-video-copy-light dl {
  background: var(--line);
}

.proof-video-copy dl div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-video-copy-light dl div {
  background: #fff;
}

.proof-video-copy dt {
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.proof-video-copy dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.proof-video-copy-light dd {
  color: var(--muted);
}

.system-section {
  padding-bottom: 60px;
}

.workflow {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111820;
}

.workflow img {
  width: 100%;
  aspect-ratio: 2.38 / 1;
  object-fit: cover;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
}

.workflow-steps li {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #fff;
  background: #17212b;
  font-weight: 700;
  text-align: center;
}

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

.step-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.step-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.step-grid figcaption {
  padding: 14px 16px;
  font-weight: 800;
}

.dispatch-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-list span {
  padding: 9px 12px;
  color: #1f384c;
  background: #e9f0f4;
  font-size: 14px;
  font-weight: 700;
}

.dispatch-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101820;
}

.dispatch-visual img {
  width: 100%;
  object-fit: cover;
}

.jarvis-section {
  width: 100%;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 26, 32, 0.96), rgba(24, 36, 46, 0.94)),
    radial-gradient(circle at 82% 16%, rgba(197, 155, 83, 0.22), transparent 32%);
}

.jarvis-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.jarvis-intro .eyebrow {
  color: var(--brand-green);
}

.jarvis-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.jarvis-intro p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.jarvis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 18px;
  align-items: stretch;
}

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

.agent-cards article,
.agent-flow {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.agent-cards article {
  min-height: 260px;
  padding: 24px;
}

.agent-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: #151a20;
  background: var(--brand-green);
  font-weight: 850;
}

.agent-cards h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.agent-cards p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.agent-flow {
  padding: 24px;
}

.agent-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.agent-status strong {
  font-size: 22px;
}

.agent-status span {
  padding: 6px 10px;
  color: #151a20;
  background: var(--brand-green);
  font-size: 12px;
  font-weight: 850;
}

.agent-flow ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-flow li {
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.agent-flow b,
.agent-flow span {
  display: block;
}

.agent-flow b {
  margin-bottom: 5px;
}

.agent-flow li span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.solutions-section {
  width: 100%;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: #f0f3f2;
}

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

.solution-grid article {
  background: #fff;
  border: 1px solid rgba(18, 21, 27, 0.08);
  overflow: hidden;
}

.solution-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.solution-grid h3 {
  margin: 18px 18px 8px;
  font-size: 20px;
}

.solution-grid p {
  margin: 0 18px 20px;
  color: var(--muted);
}

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

.solution-advantage-card {
  min-height: 360px;
  padding: 28px;
  color: #fff;
  background: #151a20;
}

.solution-advantage-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 850;
}

.solution-advantage-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.solution-advantage-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.solution-advantage-card p {
  color: rgba(255, 255, 255, 0.74);
}

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

.motion-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 248, 0.98)),
    #fff;
}

.motion-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -48% 28%;
  height: 260px;
  background: radial-gradient(circle, rgba(18, 230, 119, 0.14), transparent 64%);
  pointer-events: none;
}

.motion-card-dark {
  grid-column: span 3;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 21, 27, 0.98), rgba(30, 41, 50, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(18, 230, 119, 0.18), transparent 28%);
}

.motion-card-copy {
  position: relative;
  z-index: 1;
}

.motion-card-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.motion-card-dark .motion-card-copy span {
  color: var(--brand-green);
}

.motion-card-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
}

.motion-card:not(.motion-card-dark) .motion-card-copy h3 {
  font-size: 28px;
}

.motion-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.motion-card-dark .motion-card-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.motion-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(18, 21, 27, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.motion-card-dark .motion-visual {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px);
}

.mission-window {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.mission-window i {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.mission-window i::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 8px rgba(18, 230, 119, 0.16);
  animation: routeMove 5.2s ease-in-out infinite;
}

.sortie-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 70px;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.sortie-row b,
.sortie-row em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

.sortie-row em {
  text-align: right;
}

.sortie-track {
  position: relative;
  display: flex;
  gap: 7px;
  height: 54px;
}

.sortie-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.sortie-track span {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.sortie-track span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  animation: fillSortie 5.2s ease-in-out infinite;
}

.sortie-track-three span::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
}

.sortie-track-three span:nth-child(2)::after {
  animation-delay: 0.22s;
}

.sortie-track-three span:nth-child(3)::after {
  animation-delay: 0.44s;
}

.sortie-track-one span::after {
  background: linear-gradient(90deg, var(--accent), var(--brand-green));
}

.motion-result {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.motion-result strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.motion-result span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: right;
}

.animated-flow {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.animated-flow::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--brand-green));
  transform-origin: top;
  animation: flowGrow 4.6s ease-in-out infinite;
}

.animated-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 44px;
}

.animated-flow li span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: #151a20;
  font-size: 12px;
  font-weight: 850;
  animation: nodePulse 4.6s ease-in-out infinite;
}

.animated-flow li:nth-child(2) span {
  animation-delay: 0.45s;
}

.animated-flow li:nth-child(3) span {
  animation-delay: 0.9s;
}

.animated-flow li:nth-child(4) span {
  animation-delay: 1.35s;
}

.animated-flow li:nth-child(5) span {
  animation-delay: 1.8s;
}

.animated-flow li b {
  font-size: 17px;
}

.flow-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  color: #fff;
  background: #151a20;
}

.flow-caption strong {
  color: var(--brand-green);
  font-size: 38px;
  line-height: 1;
}

.flow-caption span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: right;
}

.step-coverage-card {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.step-coverage-visual {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  min-height: 420px;
}

.coverage-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(18, 230, 119, 0.08), transparent 46%),
    rgba(8, 15, 22, 0.72);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.coverage-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.coverage-ring-small {
  width: 32%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.coverage-ring-large {
  width: 78%;
  aspect-ratio: 1;
  border: 2px solid rgba(18, 230, 119, 0.72);
  background: radial-gradient(circle, rgba(18, 230, 119, 0.12), rgba(18, 230, 119, 0.02) 58%, transparent 62%);
  box-shadow: 0 0 38px rgba(18, 230, 119, 0.12);
  animation: coveragePulse 5.8s ease-in-out infinite;
}

.coverage-dock {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  min-width: 78px;
  padding: 12px 14px;
  color: #101820;
  background: #fff;
  border: 2px solid var(--brand-green);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
}

.coverage-drone {
  position: absolute;
  left: 71%;
  top: 24%;
  z-index: 4;
  padding: 9px 12px;
  color: #101820;
  background: var(--brand-green);
  font-size: 12px;
  font-weight: 900;
  animation: droneOrbit 5.8s ease-in-out infinite;
}

.coverage-route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 230, 119, 0), var(--brand-green));
  transform-origin: left center;
}

.coverage-route-a {
  transform: rotate(-31deg);
}

.coverage-route-b {
  transform: rotate(38deg);
  animation: routeBlink 5.8s ease-in-out infinite;
}

.coverage-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 9px rgba(18, 230, 119, 0.12);
  animation: nodePulse 4.6s ease-in-out infinite;
}

.coverage-point-a {
  left: 26%;
  top: 21%;
}

.coverage-point-b {
  left: 76%;
  top: 58%;
  animation-delay: 0.4s;
}

.coverage-point-c {
  left: 30%;
  top: 76%;
  animation-delay: 0.8s;
}

.coverage-legend {
  display: grid;
  gap: 10px;
}

.coverage-legend div {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
  align-content: center;
  min-height: 74px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-legend i {
  grid-row: span 2;
  align-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.coverage-legend strong {
  font-size: 15px;
}

.coverage-legend span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.legend-small {
  border: 1px dashed rgba(255, 255, 255, 0.62);
}

.legend-large {
  background: var(--brand-green);
  box-shadow: 0 0 0 7px rgba(18, 230, 119, 0.12);
}

.legend-platform {
  background: var(--accent);
}

.legend-weather {
  background: #8fb8c8;
}

.report-visual {
  display: grid;
  align-content: center;
}

@keyframes coveragePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.74;
  }

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

@keyframes droneOrbit {
  0%, 100% {
    transform: translate(-16px, 6px);
  }

  50% {
    transform: translate(18px, -14px);
  }
}

@keyframes routeBlink {
  0%, 30%, 100% {
    opacity: 0.32;
  }

  55% {
    opacity: 1;
  }
}

.report-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.report-source-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.report-pipeline {
  position: relative;
  height: 44px;
}

.report-pipeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(18, 21, 27, 0.16);
}

.report-pipeline i {
  position: absolute;
  left: calc(50% - 5px);
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  animation: dataDrop 3.8s ease-in-out infinite;
}

.report-doc {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 34px rgba(18, 21, 27, 0.08);
  animation: docLift 3.8s ease-in-out infinite;
}

.report-doc b {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
}

.report-doc span {
  display: block;
  height: 8px;
  margin-bottom: 9px;
  background: #e3e6e9;
}

.report-doc span:nth-child(3) {
  width: 76%;
}

.report-doc span:nth-child(4) {
  width: 58%;
}

.report-doc em {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.payload-visual {
  display: grid;
  align-content: center;
  gap: 18px;
}

.payload-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 118px;
  gap: 14px;
  align-items: center;
}

.payload-row b,
.payload-row em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

.payload-row em {
  text-align: right;
  font-weight: 850;
}

.payload-bar {
  height: 52px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.payload-bar span {
  display: block;
  height: 100%;
  transform-origin: left;
  animation: payloadGrow 4.8s ease-in-out infinite;
}

.payload-bar-base span,
.payload-bar-tested span {
  width: 60%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
}

.payload-bar-plus span {
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--brand-green));
}

.response-visual,
.portable-visual,
.route-visual {
  display: grid;
  gap: 18px;
  align-content: center;
}

.response-radar {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at center, rgba(18, 230, 119, 0.12), transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 54px);
}

.response-radar i,
.response-radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.response-radar i {
  width: 3px;
  height: 118px;
  transform-origin: center bottom;
  background: linear-gradient(180deg, rgba(18, 230, 119, 0.88), rgba(18, 230, 119, 0));
  animation: radarSweep 4.6s linear infinite;
}

.response-radar span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: radarPulse 4.6s ease-in-out infinite;
}

.response-radar span:nth-of-type(1) {
  width: 74px;
  height: 74px;
}

.response-radar span:nth-of-type(2) {
  width: 138px;
  height: 138px;
  animation-delay: 0.28s;
}

.response-radar span:nth-of-type(3) {
  width: 202px;
  height: 202px;
  animation-delay: 0.56s;
}

.response-radar b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: #151a20;
  background: var(--brand-green);
  font-size: 13px;
  font-weight: 850;
}

.response-kpis,
.portable-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.response-kpis div,
.portable-kpis div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.response-kpis strong,
.portable-kpis strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
  font-size: 28px;
  line-height: 1;
}

.response-kpis span,
.portable-kpis span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.dark-mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.dark-mini-flow span {
  position: relative;
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.dark-mini-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: calc(50% - 5px);
  z-index: 1;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brand-green);
  border-right: 2px solid var(--brand-green);
  transform: rotate(45deg);
}

.portable-track {
  display: grid;
  gap: 10px;
}

.portable-track b {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.portable-bar {
  position: relative;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.portable-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  animation: portableFill 5s ease-in-out infinite;
}

.portable-bar-long::after {
  background: linear-gradient(90deg, var(--accent), var(--brand-green));
}

.portable-bar-load::after {
  width: 66.7%;
  background: linear-gradient(90deg, rgba(18, 230, 119, 0.88), rgba(255, 255, 255, 0.2));
}

.route-map {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 28%, rgba(18, 230, 119, 0.1), transparent 22%),
    radial-gradient(circle at 78% 70%, rgba(18, 230, 119, 0.16), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 64px);
}

.route-line {
  position: absolute;
  height: 3px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-green), rgba(18, 230, 119, 0.08));
}

.route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: var(--brand-green);
  animation: routeTrace 5.4s ease-in-out infinite;
}

.route-line-a {
  left: 15%;
  top: 34%;
  width: 54%;
  transform: rotate(15deg);
}

.route-line-b {
  left: 42%;
  top: 57%;
  width: 42%;
  transform: rotate(-21deg);
}

.route-node {
  position: absolute;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #151a20;
  background: var(--brand-green);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 0 0 8px rgba(18, 230, 119, 0.12);
}

.route-node-a {
  left: 9%;
  top: 23%;
}

.route-node-b {
  left: 39%;
  top: 34%;
}

.route-node-c {
  right: 12%;
  top: 21%;
  background: #fff;
}

.route-node-d {
  right: 18%;
  bottom: 18%;
}

.route-aircraft {
  position: absolute;
  z-index: 2;
  left: 12%;
  top: 31%;
  width: 18px;
  height: 18px;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 8px rgba(18, 230, 119, 0.18);
  animation: routeAircraft 5.4s ease-in-out infinite;
}

.custom-overview {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.custom-overview-copy {
  display: grid;
  gap: 12px;
}

.custom-overview-copy article {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.custom-overview-copy span,
.custom-scenario-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.custom-overview-copy h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.custom-overview-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.custom-blueprint {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 46%, rgba(18, 230, 119, 0.12), transparent 22%),
    repeating-linear-gradient(90deg, rgba(18, 21, 27, 0.055) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(18, 21, 27, 0.045) 0 1px, transparent 1px 64px),
    #f7f8f8;
}

.custom-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  padding: 12px;
  color: #151a20;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(18, 21, 27, 0.08);
  font-weight: 850;
  text-align: center;
}

.custom-node-center {
  left: calc(50% - 64px);
  top: calc(50% - 64px);
  width: 128px;
  height: 128px;
  color: #fff;
  background: #151a20;
  border-color: #151a20;
}

.custom-node-a {
  left: 9%;
  top: 13%;
}

.custom-node-b {
  right: 9%;
  top: 14%;
}

.custom-node-c {
  left: 10%;
  bottom: 14%;
}

.custom-node-d {
  right: 10%;
  bottom: 13%;
}

.custom-node-e {
  left: calc(50% - 56px);
  bottom: 6%;
  color: #151a20;
  background: var(--brand-green);
}

.custom-link {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 2px;
  transform-origin: left center;
  background: rgba(18, 21, 27, 0.15);
}

.custom-link::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), rgba(18, 230, 119, 0));
  animation: customLinkPulse 4.8s ease-in-out infinite;
}

.custom-link-a {
  transform: rotate(216deg);
}

.custom-link-b {
  transform: rotate(322deg);
}

.custom-link-c {
  transform: rotate(145deg);
}

.custom-link-d {
  transform: rotate(39deg);
}

.custom-link-e {
  transform: rotate(90deg);
}

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

.custom-capability-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.custom-capability-card:nth-child(2n) {
  background: #f7f8f8;
}

.custom-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  color: #fff;
  background: #151a20;
}

.custom-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-capability-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.custom-capability-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.custom-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.custom-scenario-card {
  min-height: 230px;
  padding: 24px;
  background: #fff;
}

.custom-scenario-card:nth-child(3n + 2) span {
  background: #151a20;
}

.custom-scenario-card:nth-child(3n) span {
  color: #151a20;
  background: var(--brand-green);
}

.custom-scenario-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.custom-scenario-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.custom-process-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  color: #fff;
  background: #151a20;
  overflow: hidden;
}

.custom-process-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 28%;
  background: linear-gradient(90deg, rgba(18, 230, 119, 0.82), rgba(18, 230, 119, 0.28));
  animation: processScan 5.4s ease-in-out infinite;
}

.custom-process-visual span {
  position: relative;
  z-index: 1;
  min-height: 86px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
  font-weight: 850;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

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

.factory-gallery figure,
.factory-strip figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: #151a20;
}

.factory-gallery-large {
  grid-column: span 3;
  min-height: 360px;
}

.factory-gallery img,
.factory-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.factory-gallery figure::after,
.factory-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 18, 0.76), rgba(8, 12, 18, 0.08) 62%);
}

.factory-gallery figure:hover img,
.factory-strip figure:hover img {
  transform: scale(1.035);
}

.factory-gallery figcaption,
.factory-strip figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  font-weight: 850;
}

.factory-capability-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.factory-capability-list article {
  min-height: 126px;
  padding: 22px;
  background: #151a20;
  color: #fff;
}

.factory-capability-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-green);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.factory-capability-list span {
  color: rgba(255, 255, 255, 0.72);
}

.factory-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.factory-strip figure {
  min-height: 290px;
}

.factory-detail-grid {
  margin-top: 18px;
}

.solution-mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.solution-mini-flow span {
  position: relative;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #46505d;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.solution-mini-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: calc(50% - 5px);
  z-index: 1;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

@keyframes routeMove {
  0%, 12% {
    left: 0;
  }

  62%, 100% {
    left: calc(100% - 12px);
  }
}

@keyframes fillSortie {
  0%, 12% {
    transform: scaleX(0);
  }

  62%, 100% {
    transform: scaleX(1);
  }
}

@keyframes flowGrow {
  0%, 12% {
    transform: scaleY(0);
  }

  70%, 100% {
    transform: scaleY(1);
  }
}

@keyframes nodePulse {
  0%, 40%, 100% {
    box-shadow: 0 0 0 0 rgba(18, 230, 119, 0);
  }

  18% {
    box-shadow: 0 0 0 8px rgba(18, 230, 119, 0.18);
  }
}

@keyframes dataDrop {
  0%, 18% {
    transform: translateY(0);
    opacity: 0;
  }

  46% {
    opacity: 1;
  }

  78%, 100% {
    transform: translateY(34px);
    opacity: 0;
  }
}

@keyframes docLift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes payloadGrow {
  0%, 14% {
    transform: scaleX(0);
  }

  68%, 100% {
    transform: scaleX(1);
  }
}

@keyframes radarSweep {
  from {
    transform: translate(-50%, -100%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

@keyframes radarPulse {
  0%, 100% {
    opacity: 0.46;
    transform: translate(-50%, -50%) scale(0.96);
  }

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

@keyframes portableFill {
  0%, 14% {
    transform: scaleX(0);
  }

  68%, 100% {
    transform: scaleX(1);
  }
}

@keyframes routeTrace {
  0%, 14% {
    transform: scaleX(0);
  }

  72%, 100% {
    transform: scaleX(1);
  }
}

@keyframes routeAircraft {
  0%, 12% {
    left: 12%;
    top: 31%;
  }

  44% {
    left: 43%;
    top: 41%;
  }

  72%, 100% {
    left: 76%;
    top: 27%;
  }
}

@keyframes customLinkPulse {
  0%, 14% {
    transform: scaleX(0);
    opacity: 0.1;
  }

  58% {
    opacity: 1;
  }

  82%, 100% {
    transform: scaleX(1);
    opacity: 0.32;
  }
}

@keyframes processScan {
  0%, 12% {
    transform: translateX(-110%);
  }

  72%, 100% {
    transform: translateX(380%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-window i::after,
  .sortie-track span::after,
  .animated-flow::before,
  .animated-flow li span,
  .report-pipeline i,
  .report-doc,
  .payload-bar span,
  .response-radar i,
  .response-radar span,
  .portable-bar::after,
  .route-line::after,
  .route-aircraft,
  .coverage-ring-large,
  .coverage-drone,
  .coverage-route-b,
  .coverage-point,
  .custom-link::after,
  .custom-process-visual::before {
    animation: none;
  }
}

.solution-detail-grid {
  display: grid;
  gap: 18px;
}

.solution-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.solution-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.solution-detail-body {
  padding: 28px;
}

.solution-detail-body > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.solution-detail-body h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.solution-detail-body p {
  color: var(--muted);
}

.solution-detail-body dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: var(--line);
}

.solution-detail-body dl div {
  min-height: 108px;
  padding: 16px;
  background: #f7f8f8;
}

.solution-detail-body dt {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
}

.solution-detail-body dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.cta-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 92px auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 42px;
  color: #fff;
  background: #151a20;
}

.cta-section .eyebrow {
  color: var(--brand-green);
}

.cta-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta-actions .button {
  min-height: 42px;
}

.contact-panel {
  min-width: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.contact-panel p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contact-panel .button {
  width: 100%;
  margin-top: 16px;
}

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

.contact-toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  color: #fff;
  background: rgba(16, 19, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-toast strong,
.contact-toast span {
  display: block;
}

.contact-toast strong {
  margin-bottom: 4px;
  color: var(--brand-green);
  font-size: 14px;
}

.contact-toast span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.is-contact-highlighted {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: #646b75;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.subpage-main {
  padding-top: 72px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.page-hero img,
.page-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero video {
  background: #101820;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 18, 0.86), rgba(8, 12, 18, 0.38) 62%, rgba(8, 12, 18, 0.16));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 64px;
}

.page-hero .eyebrow {
  color: var(--brand-green);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-hero-player {
  min-height: 660px;
  align-items: center;
}

.page-hero-player::after {
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.88), rgba(8, 12, 18, 0.54) 50%, rgba(8, 12, 18, 0.26)),
    linear-gradient(0deg, rgba(8, 12, 18, 0.72), rgba(8, 12, 18, 0.08) 48%);
}

.page-hero-player .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.96fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
  padding: 108px 0 72px;
}

.page-hero-copy {
  min-width: 0;
}

.hero-player-card {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 11, 16, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.hero-player-card video {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #05070b;
}

.hero-player-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-player-caption span:first-child {
  color: #fff;
  font-weight: 750;
}

.page-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-metrics div {
  padding: 18px;
  background: rgba(12, 17, 24, 0.68);
}

.page-metrics dt {
  margin-bottom: 4px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 850;
  line-height: 1;
}

.page-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
  scroll-margin-top: 92px;
}

.page-section-soft {
  width: 100%;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: #f0f3f2;
}

.detail-grid,
.feature-grid,
.solution-list {
  display: grid;
  gap: 16px;
}

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

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

.detail-card,
.feature-card,
.solution-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-card h3,
.feature-card h3,
.solution-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.detail-card p,
.feature-card p,
.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 30px;
  align-items: stretch;
}

.split-content img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.text-panel {
  padding: 34px;
  background: #151a20;
  color: #fff;
}

.text-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.text-panel ul,
.page-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.text-panel li,
.page-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-list li {
  border-color: var(--line);
}

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

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

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.resource-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.resource-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.resource-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.resource-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 10px 14px;
  color: #101316;
  background: var(--accent);
  font-weight: 850;
}

.resource-card a:hover {
  color: #fff;
  background: var(--accent-deep);
}

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

.case-card {
  display: grid;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #151a20;
}

.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 18, 0.86), rgba(8, 12, 18, 0.2) 62%);
}

.case-card:hover img {
  transform: scale(1.035);
}

.case-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}

.case-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 850;
}

.case-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.16;
}

.case-card p {
  color: rgba(255, 255, 255, 0.76);
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.case-meta div {
  min-height: 130px;
  padding: 24px;
  background: #fff;
}

.case-meta dt {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
}

.case-meta dd {
  margin: 0;
  color: var(--muted);
}

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

.case-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.case-gallery img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.case-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.directory-card {
  display: grid;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #151a20;
}

.directory-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.directory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 18, 0.82), rgba(8, 12, 18, 0.12) 62%);
}

.directory-card:hover img {
  transform: scale(1.035);
}

.directory-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}

.directory-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
}

.directory-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.directory-card p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 140px;
  padding: 20px;
  background: #fff;
}

.process-list b,
.process-list span {
  display: block;
}

.process-list b {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 26px;
}

.process-list span {
  color: var(--muted);
}

.subpage-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 84px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: #151a20;
}

.subpage-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel-compact {
  min-width: 300px;
}

.mobile-contact-bar {
  display: none;
}

.legacy-main {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.legacy-main h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 56px);
}

.legacy-main p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 110px;
  }

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

  .product-card,
  .product-card-large {
    grid-column: span 3;
    min-height: 430px;
  }

  .product-card-wide {
    grid-column: span 6;
  }

  .section-heading-split,
  .performance-layout,
  .proof-video-layout,
  .dispatch-section,
  .jarvis-layout,
  .split-content,
  .factory-layout,
  .custom-overview {
    grid-template-columns: 1fr;
  }

  .agent-cards {
    grid-template-columns: 1fr;
  }

  .custom-capability-grid,
  .custom-scenario-grid,
  .factory-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .solution-grid,
  .solution-motion-grid,
  .detail-grid,
  .feature-grid,
  .resource-grid,
  .product-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-card-dark {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .step-coverage-visual {
    grid-template-columns: 1fr;
  }

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

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.has-mobile-contact {
    padding-bottom: 74px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    min-height: 690px;
    width: min(100% - 32px, var(--max));
    justify-content: flex-end;
    padding: 96px 0 32px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .button {
    width: 100%;
  }

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

  .hero-metrics div:nth-child(3),
  .hero-metrics div:nth-child(4) {
    display: none;
  }

  .hero-metrics div:last-child {
    grid-column: span 1;
  }

  .hero-metrics div {
    min-height: 74px;
    padding: 12px 14px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 68px 0;
  }

  .product-grid,
  .metric-panel,
  .workflow-steps,
  .step-grid,
  .solution-grid,
  .solution-advantage-grid,
  .solution-motion-grid,
  .custom-capability-grid,
  .custom-scenario-grid,
  .factory-gallery,
  .factory-strip,
  .solution-detail-card,
  .solution-detail-body dl,
  .detail-grid,
  .feature-grid,
  .case-grid,
  .case-meta,
  .case-gallery,
  .resource-grid,
  .product-directory,
  .process-list,
  .page-metrics {
    grid-template-columns: 1fr;
  }

  .motion-card,
  .motion-card-dark {
    grid-column: span 1;
    min-height: auto;
    padding: 22px;
  }

  .motion-card-dark {
    grid-template-columns: 1fr;
  }

  .motion-visual {
    min-height: 230px;
    padding: 18px;
  }

  .step-coverage-visual {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 280px;
  }

  .coverage-legend div {
    min-height: 64px;
  }

  .custom-blueprint {
    min-height: 520px;
  }

  .custom-node {
    width: 92px;
    height: 92px;
    font-size: 13px;
  }

  .custom-node-center {
    left: calc(50% - 54px);
    top: calc(50% - 54px);
    width: 108px;
    height: 108px;
  }

  .custom-link {
    width: 190px;
  }

  .custom-process-visual {
    grid-template-columns: 1fr;
  }

  .custom-process-visual span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .factory-gallery-large {
    grid-column: span 1;
    min-height: 260px;
  }

  .factory-gallery figure,
  .factory-strip figure {
    min-height: 240px;
  }

  .sortie-row,
  .payload-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sortie-row em,
  .payload-row em {
    text-align: left;
  }

  .motion-result,
  .flow-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .motion-result span,
  .flow-caption span {
    text-align: left;
  }

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

  .response-kpis,
  .portable-kpis,
  .dark-mini-flow {
    grid-template-columns: 1fr;
  }

  .dark-mini-flow span:not(:last-child)::after,
  .solution-mini-flow span:not(:last-child)::after {
    display: none;
  }

  .route-node {
    width: 58px;
    height: 58px;
    font-size: 11px;
  }

  .product-card,
  .product-card-large {
    grid-column: span 1;
    min-height: 380px;
  }

  .product-card-wide {
    grid-column: span 1;
  }

  .product-tier-title {
    display: block;
  }

  .product-tier-title strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .performance-section,
  .jarvis-section,
  .solutions-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .solution-grid img {
    aspect-ratio: 1.45 / 1;
  }

  .performance-visual {
    min-height: 320px;
  }

  .metric-panel article {
    min-height: 150px;
  }

  .metric-panel .metric-wide {
    grid-column: span 1;
  }

  .workflow img {
    aspect-ratio: 1.1 / 1;
  }

  .cta-section {
    width: min(100% - 32px, var(--max));
    margin: 68px auto;
    padding: 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-player {
    min-height: auto;
  }

  .page-hero-player .page-hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 92px 0 42px;
  }

  .hero-player-card {
    padding: 6px;
  }

  .hero-player-caption {
    flex-direction: column;
    gap: 4px;
  }

  .page-hero-content {
    width: min(100% - 32px, var(--max));
    padding: 88px 0 44px;
  }

  .page-section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  .page-section-soft {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-panel,
  .subpage-cta {
    padding: 28px;
  }

  .contact-panel,
  .contact-panel-compact {
    width: 100%;
    min-width: 0;
  }

  .subpage-cta {
    width: min(100% - 32px, var(--max));
    flex-direction: column;
    align-items: stretch;
  }

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

  .mobile-contact-bar {
    position: fixed;
    z-index: 40;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(18, 21, 27, 0.12);
    background: rgba(18, 21, 27, 0.12);
    box-shadow: 0 16px 36px rgba(18, 21, 27, 0.18);
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    border: 0;
    color: #101316;
    background: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-contact-bar a:first-child {
    color: #fff;
    background: var(--accent);
  }

  .contact-toast {
    right: 12px;
    bottom: 78px;
    width: calc(100% - 24px);
  }
}
