:root {
  --app-bg: #050a10;
  --app-bg-soft: #08111c;
  --panel-bg: rgba(13, 25, 39, 0.82);
  --panel-solid: #0e1926;
  --panel-border: rgba(121, 207, 255, 0.16);
  --panel-border-strong: rgba(121, 207, 255, 0.32);
  --text-main: #f4f8fb;
  --text-soft: #c4d1dc;
  --text-muted: #8293a4;
  --accent: #2bb8ff;
  --accent-strong: #058ee6;
  --accent-light: #79d8ff;
  --success: #4be38d;
  --warning: #ffbf58;
  --danger: #ff5964;
  --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--app-bg);
  color: var(--text-main);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.landing-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(27, 131, 205, 0.08), transparent 28%),
    radial-gradient(circle at 86% 48%, rgba(28, 214, 193, 0.05), transparent 26%),
    var(--app-bg);
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #050a10;
}

body::-webkit-scrollbar-thumb {
  border: 2px solid #050a10;
  border-radius: 20px;
  background: linear-gradient(var(--accent), #295ea6);
}

::selection {
  color: #021019;
  background: var(--accent-light);
}

img,
video {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.text-secondary {
  color: var(--text-muted) !important;
}

.section-space {
  padding: 120px 0;
}

.section-space-sm {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.section-label::before {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
}

.section-heading h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p,
.section-intro {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-light);
  font-weight: 700;
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
  gap: 15px;
  color: #fff;
}

.page-preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #03070c;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.page-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.page-preloader p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.preloader-core {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(80, 196, 255, 0.26);
  border-radius: 50%;
  color: var(--accent-light);
  font-size: 1.7rem;
  box-shadow: 0 0 50px rgba(31, 176, 255, 0.16);
}

.preloader-radar {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(80, 196, 255, 0.2);
  border-radius: 50%;
  animation: radarPulse 1.6s ease-out infinite;
}

.scroll-progress {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2bb8ff, #77f4dc);
  box-shadow: 0 0 16px rgba(43, 184, 255, 0.75);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 184, 255, 0.09), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.main-navbar {
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(2, 7, 12, 0.82), rgba(2, 7, 12, 0));
  transition: padding var(--transition), background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.main-navbar.is-scrolled {
  padding: 11px 0;
  border-color: rgba(122, 207, 255, 0.12);
  background: rgba(4, 10, 17, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

.rover-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.rover-brand strong {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.rover-brand small {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(106, 211, 255, 0.34);
  border-radius: 13px;
  color: #061019;
  background: linear-gradient(135deg, #8de5ff, #1ca9f0);
  box-shadow: 0 0 24px rgba(43, 184, 255, 0.24);
}

.main-navbar .nav-link {
  position: relative;
  padding: 10px 13px !important;
  color: rgba(234, 243, 249, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color var(--transition);
}

.main-navbar .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  border-radius: 4px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #fff;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nav-dashboard-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid rgba(93, 209, 255, 0.25);
  border-radius: 12px;
  color: #eaf8ff;
  background: rgba(34, 167, 232, 0.11);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.nav-dashboard-btn:hover {
  border-color: rgba(93, 209, 255, 0.55);
  color: #fff;
  background: rgba(34, 167, 232, 0.2);
  transform: translateY(-2px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(75, 227, 141, 0.1), 0 0 15px rgba(75, 227, 141, 0.8);
  animation: statusPulse 1.8s infinite;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #07111c;
}

.hero-video {
  position: absolute;
  z-index: -5;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.62);
  transform: scale(1.035);
}

.hero-video-overlay {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 14, 0.98) 0%, rgba(2, 8, 14, 0.83) 40%, rgba(2, 8, 14, 0.44) 70%, rgba(2, 8, 14, 0.74) 100%),
    linear-gradient(180deg, rgba(3, 9, 16, 0.42) 0%, rgba(3, 9, 16, 0.05) 55%, #050a10 100%);
}

.hero-grid,
.cta-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(85, 190, 242, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 190, 242, 0.22) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
  animation: gridDrift 22s linear infinite;
}

.hero-scanline {
  position: absolute;
  z-index: -1;
  top: -8%;
  left: 0;
  width: 100%;
  height: 12%;
  background: linear-gradient(180deg, transparent, rgba(55, 195, 255, 0.08), transparent);
  animation: scanline 8s linear infinite;
}

.floating-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(7px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-one {
  top: 18%;
  right: 9%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(38, 168, 255, 0.15), transparent 68%);
}

.orb-two {
  bottom: 10%;
  left: 7%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(40, 224, 190, 0.08), transparent 70%);
  animation-delay: -4s;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(195, 233, 255, 0.72);
  box-shadow: 0 0 8px rgba(68, 193, 255, 0.8);
  animation: particleFloat var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.hero-content {
  z-index: 2;
}

.hero-copy {
  max-width: 860px;
  padding-top: 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(98, 208, 255, 0.18);
  border-radius: 999px;
  color: #c9eefe;
  background: rgba(13, 43, 61, 0.38);
  backdrop-filter: blur(14px);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px var(--success);
  animation: statusPulse 1.8s infinite;
}

.hero-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.3rem, 7.8vw, 7.8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-title span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(94deg, #eaf8ff 5%, #7bdaff 45%, #3aaff1 78%, #6ff0da 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 20px 65px rgba(39, 166, 232, 0.2);
}

.hero-description {
  max-width: 760px;
  margin: 28px 0 34px;
  color: #a8b9c7;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.hero-primary-btn,
.hero-secondary-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 750;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.hero-primary-btn {
  border: 1px solid rgba(140, 227, 255, 0.2);
  color: #031019;
  background: linear-gradient(135deg, #94e7ff 0%, #35baff 54%, #1f9ee8 100%);
  box-shadow: 0 15px 45px rgba(20, 157, 226, 0.28);
}

.hero-primary-btn:hover {
  border-color: #b4efff;
  color: #031019;
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(20, 157, 226, 0.36);
}

.hero-secondary-btn {
  border: 1px solid rgba(226, 243, 251, 0.16);
  color: #eaf5fb;
  background: rgba(10, 23, 34, 0.48);
  backdrop-filter: blur(14px);
}

.hero-secondary-btn:hover {
  border-color: rgba(113, 210, 251, 0.44);
  color: #fff;
  background: rgba(18, 47, 65, 0.52);
  transform: translateY(-3px);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
}

.trust-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 195, 239, 0.2);
  border-radius: 11px;
  color: var(--accent-light);
  background: rgba(18, 51, 70, 0.42);
}

.trust-item span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.trust-item strong {
  color: #eaf4f9;
  font-size: 0.85rem;
}

.mission-hud {
  position: relative;
  max-width: 470px;
  margin: 70px 0 0 auto;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(108, 210, 255, 0.23);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(12, 31, 45, 0.8), rgba(5, 17, 28, 0.7)),
    rgba(8, 20, 31, 0.72);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px);
  animation: hudFloat 6s ease-in-out infinite;
}

.mission-hud::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8ae5ff, transparent);
  content: "";
  animation: edgeScan 4s linear infinite;
}

.hud-header,
.hud-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-kicker {
  color: var(--accent-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hud-header h2 {
  margin: 6px 0 0;
  font-size: 1.3rem;
}

.hud-online {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.hud-online span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 13px var(--success);
}

.hud-visual {
  position: relative;
  height: 260px;
  display: grid;
  place-items: center;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid rgba(94, 193, 235, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(rgba(65, 177, 225, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 177, 225, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(29, 148, 207, 0.16), rgba(4, 14, 23, 0.82) 60%);
  background-size: 28px 28px, 28px 28px, auto;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(96, 210, 255, 0.28);
  border-radius: 50%;
}

.radar-ring-one {
  width: 130px;
  height: 130px;
}

.radar-ring-two {
  width: 205px;
  height: 205px;
}

.radar-sweep {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(61, 196, 255, 0.2) 24deg, transparent 70deg);
  animation: rotate360 4.6s linear infinite;
}

.rover-hologram {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 218, 255, 0.38);
  border-radius: 28px;
  color: #90e7ff;
  background: linear-gradient(145deg, rgba(42, 175, 231, 0.2), rgba(10, 36, 51, 0.62));
  font-size: 3.1rem;
  box-shadow: 0 0 50px rgba(49, 186, 239, 0.19);
  transform: perspective(400px) rotateX(8deg) rotateY(-9deg);
  animation: hologramPulse 2.5s ease-in-out infinite;
}

.target {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #62d8ff;
  border-radius: 50%;
  box-shadow: 0 0 14px #28bcff;
  animation: targetPulse 1.6s infinite;
}

.target-one { top: 21%; left: 18%; }
.target-two { top: 34%; right: 18%; animation-delay: -0.6s; }
.target-three { right: 26%; bottom: 17%; animation-delay: -1.1s; }

.hud-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hud-metric {
  padding: 13px;
  border: 1px solid rgba(96, 198, 242, 0.1);
  border-radius: 14px;
  background: rgba(7, 19, 29, 0.5);
}

.hud-metric > span {
  display: block;
  color: var(--text-muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hud-metric strong {
  display: block;
  margin: 7px 0 9px;
  font-size: 0.9rem;
}

.metric-bar {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-bar span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #6df1d9);
  box-shadow: 0 0 10px rgba(43, 184, 255, 0.6);
}

.hud-footer {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.67rem;
}

.hud-footer > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-footer i {
  color: var(--accent-light);
}

.hud-footer time {
  margin-left: auto;
  color: #e9f7fd;
  font-variant-numeric: tabular-nums;
}

.video-toggle,
.back-to-top {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 209, 250, 0.22);
  border-radius: 50%;
  color: #dff6ff;
  background: rgba(5, 17, 27, 0.65);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.video-toggle {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 34px;
}

.video-toggle:hover,
.back-to-top:hover {
  border-color: rgba(111, 209, 250, 0.6);
  background: rgba(18, 61, 83, 0.7);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(222, 242, 250, 0.62);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator i {
  color: var(--accent-light);
  animation: bounceDown 1.7s infinite;
}

.mission-stats-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border-top: 1px solid rgba(93, 196, 240, 0.11);
  border-bottom: 1px solid rgba(93, 196, 240, 0.11);
  background: rgba(6, 14, 23, 0.92);
}

.mission-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mission-stat {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid rgba(93, 196, 240, 0.1);
}

.mission-stat:last-child {
  border-right: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(93, 196, 240, 0.18);
  border-radius: 14px;
  color: var(--accent-light);
  background: rgba(31, 115, 155, 0.12);
}

.mission-stat > div {
  display: flex;
  flex-direction: column;
}

.mission-stat strong {
  font-size: 2rem;
  line-height: 1;
}

.mission-stat div > span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.mission-purpose-section {
  position: relative;
  overflow: hidden;
}

.mission-purpose-section::before {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 151, 219, 0.1), transparent 68%);
  content: "";
}

.mission-visual {
  position: relative;
  min-height: 560px;
  padding: 42px 0 42px 52px;
}

.mission-image-frame {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(107, 207, 249, 0.2);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.mission-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 16, 0.04), rgba(7, 18, 27, 0.05) 45%, rgba(2, 10, 16, 0.6)), linear-gradient(180deg, transparent 55%, rgba(3, 10, 16, 0.72));
  content: "";
}

.mission-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.mission-visual:hover .mission-image-frame img {
  transform: scale(1.045);
}

.image-overlay-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(96, 204, 248, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(96, 204, 248, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
}

.image-corner {
  position: absolute;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-color: var(--accent-light);
  border-style: solid;
}

.corner-tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.corner-tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.corner-br { right: 20px; bottom: 20px; border-width: 0 2px 2px 0; }

.thermal-tag {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 164, 76, 0.35);
  border-radius: 10px;
  color: #ffd2a0;
  background: rgba(48, 24, 8, 0.64);
  backdrop-filter: blur(10px);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.victim-marker {
  position: absolute;
  z-index: 4;
  top: 40%;
  right: 16%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.victim-marker > span {
  width: 26px;
  height: 26px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 89, 100, 0.1), 0 0 24px rgba(255, 89, 100, 0.5);
  animation: targetPulse 1.5s infinite;
}

.victim-marker div {
  display: flex;
  flex-direction: column;
  padding: 9px 11px;
  border: 1px solid rgba(255, 94, 107, 0.25);
  border-radius: 9px;
  background: rgba(30, 9, 13, 0.68);
  backdrop-filter: blur(10px);
}

.victim-marker strong {
  font-size: 0.72rem;
}

.victim-marker small {
  margin-top: 3px;
  color: #ffabb1;
  font-size: 0.61rem;
}

.floating-data-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 16px;
  border: 1px solid rgba(107, 207, 249, 0.2);
  border-radius: 16px;
  background: rgba(8, 22, 33, 0.85);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.floating-data-card > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-light);
  background: rgba(39, 160, 213, 0.15);
}

.floating-data-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-data-card strong {
  font-size: 0.83rem;
}

.floating-data-card span {
  color: var(--text-muted);
  font-size: 0.69rem;
}

.data-card-left {
  bottom: 4px;
  left: 0;
  animation: cardFloat 5.6s ease-in-out infinite;
}

.data-card-right {
  top: 14px;
  right: -16px;
  animation: cardFloat 5.6s ease-in-out infinite reverse;
}

.capabilities-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(100, 201, 244, 0.08);
  border-bottom: 1px solid rgba(100, 201, 244, 0.08);
  background: linear-gradient(180deg, rgba(8, 18, 29, 0.9), rgba(4, 10, 17, 0.96));
}

.capabilities-section::after {
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(57, 177, 230, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(57, 177, 230, 0.025), 0 0 0 160px rgba(57, 177, 230, 0.018);
  content: "";
}

.capability-card {
  position: relative;
  min-height: 390px;
  margin: 0 10px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(106, 205, 245, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 37, 52, 0.83), rgba(7, 18, 28, 0.88));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.capability-card::before {
  position: absolute;
  right: -30%;
  bottom: -45%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 183, 240, 0.18), transparent 68%);
  content: "";
  transition: transform 600ms ease;
}

.capability-card:hover {
  border-color: rgba(106, 205, 245, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.capability-card:hover::before {
  transform: scale(1.25) translate(-10%, -8%);
}

.capability-number {
  color: rgba(178, 225, 246, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.capability-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 42px 0 28px;
  border: 1px solid rgba(101, 210, 255, 0.25);
  border-radius: 19px;
  color: var(--accent-light);
  background: linear-gradient(145deg, rgba(44, 155, 205, 0.18), rgba(14, 48, 66, 0.24));
  font-size: 1.55rem;
  box-shadow: 0 18px 35px rgba(6, 13, 20, 0.25);
}

.capability-card h3 {
  margin-bottom: 16px;
  font-size: 1.32rem;
}

.capability-card p {
  color: var(--text-muted);
  line-height: 1.76;
}

.capability-tag {
  position: absolute;
  bottom: 28px;
  left: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(100, 208, 250, 0.14);
  border-radius: 999px;
  color: #a9dff4;
  background: rgba(31, 103, 135, 0.13);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider-control-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.slider-progress {
  width: min(420px, 60vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.slider-progress span {
  display: block;
  width: 14.285%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #7bf1dc);
  transition: width 400ms ease;
}

.slider-count {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}

.slider-count strong {
  font-size: 1.05rem;
}

.slider-count span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.intelligence-section {
  position: relative;
  overflow: hidden;
}

.intelligence-section::before {
  position: absolute;
  top: 12%;
  right: -10%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 169, 232, 0.09), transparent 70%);
  content: "";
}

.command-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 210, 250, 0.2);
  border-radius: 24px;
  background: #07111a;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 0 10px rgba(53, 158, 204, 0.025);
  transform: perspective(1100px) rotateY(3deg) rotateX(1deg);
  transition: transform 500ms ease;
}

.command-screen:hover {
  transform: perspective(1100px) rotateY(0) rotateX(0) translateY(-5px);
}

.screen-topbar,
.screen-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  border-color: rgba(101, 204, 247, 0.11);
  border-style: solid;
  background: rgba(12, 28, 41, 0.92);
}

.screen-topbar {
  border-width: 0 0 1px;
}

.screen-bottom-bar {
  border-width: 1px 0 0;
  color: var(--text-muted);
  font-size: 0.65rem;
}

.screen-bottom-bar span:first-child {
  color: var(--success);
}

.screen-bottom-bar span:first-child i {
  margin-right: 5px;
  font-size: 0.45rem;
  animation: statusPulse 1.5s infinite;
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #293948;
}

.screen-dots span:first-child { background: #ff665f; }
.screen-dots span:nth-child(2) { background: #ffbe4b; }
.screen-dots span:nth-child(3) { background: #4bd37b; }

.screen-topbar strong {
  color: #b7d9e7;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.screen-signal {
  color: var(--accent-light);
  font-size: 0.68rem;
}

.screen-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px;
  min-height: 440px;
}

.screen-camera {
  position: relative;
  overflow: hidden;
}

.screen-camera::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 18, 0.03), rgba(3, 10, 16, 0.35)), repeating-linear-gradient(180deg, rgba(112, 219, 255, 0.025) 0, rgba(112, 219, 255, 0.025) 1px, transparent 1px, transparent 4px);
  content: "";
}

.screen-camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
}

.camera-crosshair {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(96, 212, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.camera-crosshair::before,
.camera-crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(96, 212, 255, 0.45);
  content: "";
  transform: translate(-50%, -50%);
}

.camera-crosshair::before { width: 100px; height: 1px; }
.camera-crosshair::after { width: 1px; height: 100px; }

.camera-label {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  padding: 7px 9px;
  border: 1px solid rgba(98, 204, 247, 0.23);
  border-radius: 7px;
  color: #a9e4fb;
  background: rgba(5, 17, 25, 0.64);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.camera-detection {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--accent-light);
  box-shadow: 0 0 18px rgba(43, 184, 255, 0.17);
}

.camera-detection span {
  position: absolute;
  top: -23px;
  left: -1px;
  padding: 4px 6px;
  color: #031019;
  background: var(--accent-light);
  font-size: 0.52rem;
  font-weight: 800;
  white-space: nowrap;
}

.detection-person {
  top: 26%;
  left: 19%;
  width: 24%;
  height: 48%;
}

.detection-hazard {
  right: 11%;
  bottom: 13%;
  width: 23%;
  height: 20%;
  border-color: var(--warning);
}

.detection-hazard span {
  background: var(--warning);
}

.screen-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
  border-left: 1px solid rgba(97, 198, 241, 0.11);
  background: #08141e;
}

.mini-widget {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(103, 204, 246, 0.1);
  border-radius: 10px;
  background: rgba(14, 34, 48, 0.62);
}

.mini-widget span {
  color: var(--text-muted);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.mini-widget strong {
  margin-top: 7px;
  color: #dff6ff;
  font-size: 0.7rem;
}

.alert-widget strong {
  color: var(--success);
}

.intelligence-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 8px;
}

.intelligence-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.intelligence-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(101, 205, 246, 0.18);
  border-radius: 14px;
  color: var(--accent-light);
  background: rgba(39, 139, 183, 0.11);
}

.intelligence-item h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.intelligence-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.workflow-section {
  border-top: 1px solid rgba(99, 201, 242, 0.08);
  background: linear-gradient(180deg, rgba(7, 16, 25, 0.86), rgba(4, 9, 15, 0.95));
}

.workflow-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.workflow-heading .section-label {
  justify-content: center;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-grid::before {
  position: absolute;
  top: 60px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 192, 242, 0.35), transparent);
  content: "";
}

.workflow-card {
  position: relative;
  z-index: 2;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(97, 199, 241, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(14, 31, 45, 0.78), rgba(7, 16, 25, 0.82));
  transition: transform var(--transition), border-color var(--transition);
}

.workflow-card:hover {
  border-color: rgba(97, 199, 241, 0.3);
  transform: translateY(-8px);
}

.workflow-step {
  color: rgba(148, 217, 245, 0.28);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.workflow-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 34px 0 28px;
  border: 1px solid rgba(97, 199, 241, 0.22);
  border-radius: 50%;
  color: var(--accent-light);
  background: #0b2130;
  box-shadow: 0 0 0 8px rgba(22, 90, 121, 0.08);
  font-size: 1.35rem;
}

.workflow-card h3 {
  font-size: 1.18rem;
}

.workflow-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.safety-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 180, 82, 0.2);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(65, 39, 13, 0.34), rgba(17, 21, 25, 0.74));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.safety-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 194, 102, 0.24);
  border-radius: 22px;
  color: #ffd08b;
  background: rgba(113, 65, 19, 0.22);
  font-size: 1.7rem;
}

.safety-copy .section-label {
  margin-bottom: 8px;
  color: #ffd08b;
}

.safety-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.safety-copy p {
  max-width: 900px;
  margin: 0;
  color: #9e9a93;
  line-height: 1.7;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(101, 204, 246, 0.08);
  background:
    radial-gradient(circle at center, rgba(34, 161, 221, 0.15), transparent 48%),
    #050b12;
}

.final-cta-section::before,
.final-cta-section::after {
  position: absolute;
  top: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(70, 191, 239, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-cta-section::before { left: -170px; }
.final-cta-section::after { right: -170px; }

.final-cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-content .section-label {
  justify-content: center;
}

.final-cta-content h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.8vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.final-cta-content p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid rgba(105, 203, 244, 0.1);
  background: #03070c;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-description {
  max-width: 500px;
  color: var(--text-muted);
  line-height: 1.75;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #eaf6fb;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .col-6 > a,
.site-footer .col-12 > a {
  display: block;
  margin-bottom: 11px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition), transform var(--transition);
}

.site-footer .col-6 > a:hover,
.site-footer .col-12 > a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(105, 203, 244, 0.08);
  color: #637180;
  font-size: 0.73rem;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.status-panel,
.panel-card,
.dashboard-card,
.feature-card {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: var(--panel-solid);
}

.status-online {
  color: var(--success);
  font-weight: 700;
}

.panel-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--panel-border);
}

.camera-placeholder,
.map-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  border-radius: 0 0 14px 14px;
  background: #090c10;
}

.camera-placeholder i,
.map-placeholder i {
  font-size: 3rem;
}

.camera-large {
  min-height: 520px;
}

.map-placeholder {
  min-height: 600px;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
}

.reveal,
[data-reveal] {
  opacity: 0;
  transition: opacity 850ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal {
  transform: translateY(35px);
}

[data-reveal="left"] {
  transform: translateX(-45px);
}

[data-reveal="right"] {
  transform: translateX(45px);
}

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes radarPulse {
  0% { opacity: 1; transform: scale(0.55); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 78px 78px, 78px 78px; }
}

@keyframes scanline {
  from { transform: translateY(-20vh); }
  to { transform: translateY(120vh); }
}

@keyframes orbFloat {
  from { transform: translate3d(-15px, -12px, 0) scale(0.95); }
  to { transform: translate3d(25px, 20px, 0) scale(1.08); }
}

@keyframes particleFloat {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  15% { opacity: 0.9; }
  85% { opacity: 0.5; }
  to { opacity: 0; transform: translate3d(var(--drift), -110vh, 0); }
}

@keyframes hudFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes edgeScan {
  from { transform: translateX(-100%); }
  to { transform: translateX(330%); }
}

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

@keyframes hologramPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(49, 186, 239, 0.15); transform: perspective(400px) rotateX(8deg) rotateY(-9deg) translateY(0); }
  50% { box-shadow: 0 0 65px rgba(49, 186, 239, 0.28); transform: perspective(400px) rotateX(8deg) rotateY(-9deg) translateY(-6px); }
}

@keyframes targetPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.25); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .landing-hero {
    background: linear-gradient(135deg, #06101b, #0b2434 60%, #07111b);
  }
}
