:root {
  --ink: #0f1720;
  --graphite: #1f2933;
  --slate: #35414f;
  --paper: #f6f8fb;
  --white: #ffffff;
  --teal: #10a6a0;
  --teal-dark: #087c78;
  --amber: #f5a524;
  --coral: #e85d48;
  --line: rgba(15, 23, 32, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(10, 16, 24, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 23, 32, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(370px, 36vw);
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 4px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1.14;
}

.brand small {
  margin-top: 1px;
  color: currentColor;
  opacity: 0.74;
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 18px);
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 4px;
  font-size: clamp(0.74rem, 0.82vw, 0.84rem);
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  padding: 116px clamp(18px, 5vw, 76px) 66px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 11, 19, 0.98) 0%, rgba(6, 11, 19, 0.88) 42%, rgba(6, 11, 19, 0.7) 100%),
    repeating-linear-gradient(90deg, rgba(116, 244, 223, 0.1) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 76px),
    #08101a;
  animation: missionBackdrop 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 11, 19, 0.98) 0%, rgba(6, 11, 19, 0.83) 42%, rgba(6, 11, 19, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 13, 20, 0) 70%, rgba(8, 13, 20, 0.94));
  pointer-events: none;
}
.hero-media-launch {
  background:
    linear-gradient(90deg, rgba(6, 11, 19, 0.98) 0%, rgba(6, 11, 19, 0.9) 43%, rgba(6, 11, 19, 0.58) 100%),
    repeating-linear-gradient(90deg, rgba(116, 244, 223, 0.08) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px),
    #050b14;
  animation: launchSpaceDrift 18s ease-in-out infinite alternate;
}

.launch-stage {
  --earth-size: clamp(250px, 32vw, 390px);
  --rocket-right: clamp(108px, 16vw, 188px);
  --launch-bottom: clamp(205px, 26vw, 318px);
  --earth-right: clamp(18px, 4vw, 58px);
  --earth-bottom: clamp(18px, 3vw, 48px);
  position: absolute;
  top: 50%;
  right: clamp(12px, 5vw, 90px);
  width: min(58vw, 820px);
  height: min(68vh, 660px);
  min-height: 470px;
  transform: translateY(-44%);
}

.launch-stage span,
.launch-stage .earth,
.launch-stage .rocket,
.launch-stage .iss-orbit,
.launch-stage .iss,
.launch-stage .hero-astronaut {
  position: absolute;
  display: block;
}
.star {
  z-index: 1;
  width: 5px;
  height: 5px;
  background: #f5c252;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 197, 82, 0.72);
  opacity: 0.82;
  animation: markerPulse 2200ms ease-in-out infinite;
}

.star-a {
  top: 15%;
  right: 23%;
}

.star-b {
  top: 31%;
  right: 8%;
  animation-delay: 420ms;
}

.star-c {
  right: 38%;
  bottom: 24%;
  animation-delay: 780ms;
}

.star-d {
  left: 16%;
  bottom: 30%;
  animation-delay: 1120ms;
}

.moon,
.mars {
  z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.18));
}
.moon {
  top: 2%;
  right: 8%;
  width: clamp(48px, 6vw, 78px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 64% 62%, rgba(15, 23, 32, 0.18) 0 5%, transparent 6%),
    radial-gradient(circle at 42% 36%, rgba(15, 23, 32, 0.14) 0 7%, transparent 8%),
    radial-gradient(circle at 68% 30%, rgba(15, 23, 32, 0.1) 0 4%, transparent 5%),
    linear-gradient(135deg, #ffffff, #aeb8bd);
  animation: moonHover 6200ms ease-in-out infinite;
}

.mars {
  top: 4%;
  right: 31%;
  width: clamp(34px, 4vw, 56px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 34% 36%, rgba(255, 255, 255, 0.24) 0 12%, transparent 13%),
    linear-gradient(135deg, #f0774d, #a3382d 58%, #5c1c18);
  box-shadow: 0 0 22px rgba(232, 93, 72, 0.24);
  animation: marsHover 7800ms ease-in-out infinite;
}

.transfer-path,
.orbit-ring,
.launch-trajectory {
  z-index: 1;
  pointer-events: none;
}

.transfer-path {
  width: 42%;
  height: 28%;
  border-top: 1px dashed rgba(116, 244, 223, 0.24);
  border-radius: 50%;
  opacity: 0.7;
}

.transfer-path-moon {
  top: 8%;
  right: 6%;
  transform: rotate(-18deg);
}

.transfer-path-mars {
  top: 2%;
  right: 19%;
  width: 52%;
  height: 34%;
  border-color: rgba(245, 165, 36, 0.24);
  transform: rotate(-8deg);
}

.orbit-ring {
  right: calc(var(--earth-right) - (var(--earth-size) * 0.34));
  bottom: calc(var(--earth-bottom) - (var(--earth-size) * 0.34));
  width: calc(var(--earth-size) * 1.68);
  aspect-ratio: 1;
  border: 1px dashed rgba(116, 244, 223, 0.2);
  border-radius: 50%;
}

.orbit-ring-b {
  right: calc(var(--earth-right) - (var(--earth-size) * 0.57));
  bottom: calc(var(--earth-bottom) - (var(--earth-size) * 0.5));
  width: calc(var(--earth-size) * 2.2);
  border-color: rgba(245, 165, 36, 0.2);
  transform: rotate(-14deg);
}

.launch-trajectory {
  right: calc(var(--rocket-right) - 15px);
  bottom: calc(var(--launch-bottom) - 34px);
  z-index: 2;
  width: 4px;
  height: clamp(150px, 24vw, 270px);
  background: linear-gradient(0deg, rgba(245, 165, 36, 0.7), rgba(116, 244, 223, 0.28), transparent);
  border-radius: 999px;
  filter: blur(0.4px) drop-shadow(0 0 16px rgba(116, 244, 223, 0.3));
  opacity: 0.65;
}

.earth {
  right: var(--earth-right);
  bottom: var(--earth-bottom);
  z-index: 3;
  width: var(--earth-size);
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 31% 32%, rgba(255, 255, 255, 0.26), transparent 14%),
    radial-gradient(circle at 62% 67%, rgba(4, 54, 95, 0.44), transparent 27%),
    linear-gradient(135deg, #20a9df 0%, #0d6cb6 46%, #073859 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    inset -34px -22px 46px rgba(3, 12, 22, 0.38),
    inset 18px 16px 32px rgba(255, 255, 255, 0.18),
    0 0 56px rgba(26, 151, 224, 0.34);
}

.earth::before,
.earth::after {
  position: absolute;
  content: "";
}

.earth::before {
  inset: 0 auto 0 -32%;
  width: 168%;
  background:
    radial-gradient(ellipse at 19% 39%, rgba(53, 180, 123, 0.92) 0 10%, transparent 11%),
    radial-gradient(ellipse at 34% 58%, rgba(57, 175, 127, 0.86) 0 12%, transparent 13%),
    radial-gradient(ellipse at 55% 42%, rgba(52, 163, 111, 0.88) 0 11%, transparent 12%),
    radial-gradient(ellipse at 72% 65%, rgba(54, 186, 129, 0.82) 0 9%, transparent 10%),
    radial-gradient(ellipse at 88% 38%, rgba(54, 176, 129, 0.88) 0 13%, transparent 14%);
  opacity: 0.92;
  animation: earthRotate 18s linear infinite;
}

.earth::after {
  inset: 0;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(0, 0, 0, 0.32), transparent 42%);
  border-radius: inherit;
}

.earth-cloud {
  z-index: 4;
  height: 10%;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  filter: blur(5px);
  animation: cloudDrift 13s linear infinite;
}

.cloud-a {
  top: 32%;
  left: -18%;
  width: 62%;
}

.cloud-b {
  top: 60%;
  left: -42%;
  width: 76%;
  animation-duration: 17s;
  animation-delay: -5s;
}

.earth-shine {
  inset: 0;
  z-index: 5;
  border-radius: 50%;
  background: radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.34), transparent 28%);
}

.iss-orbit {
  right: calc(var(--earth-right) - (var(--earth-size) * 0.36));
  bottom: calc(var(--earth-bottom) - (var(--earth-size) * 0.36));
  z-index: 6;
  width: calc(var(--earth-size) * 1.72);
  aspect-ratio: 1;
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: issOrbit 18s linear infinite;
  pointer-events: none;
}

.iss-orbit::before {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-top-color: rgba(116, 244, 223, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(116, 244, 223, 0.1);
  content: "";
}

.iss {
  top: -18px;
  left: 50%;
  z-index: 7;
  width: clamp(82px, 9vw, 124px);
  height: clamp(28px, 3.4vw, 42px);
  filter: drop-shadow(0 0 12px rgba(116, 244, 223, 0.32));
  transform: translateX(-50%);
  animation: issCounterOrbit 18s linear infinite;
}

.iss-panel {
  top: 50%;
  width: 34%;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #63d8cc, #2c9f9a);
  border: 1px solid rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
}

.iss-panel-left {
  left: 0;
  transform: translateY(-50%) rotate(8deg);
}

.iss-panel-right {
  right: 0;
  transform: translateY(-50%) rotate(8deg);
}

.iss-core {
  top: 50%;
  left: 50%;
  width: 30%;
  height: 24%;
  background: linear-gradient(90deg, #dfe8ef, #ffffff, #9fafb9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.iss-core::before,
.iss-core::after {
  position: absolute;
  top: 50%;
  width: 17%;
  height: 190%;
  background: #dfe8ef;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.iss-core::before {
  left: 19%;
}

.iss-core::after {
  right: 19%;
}

.iss-dock {
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) rotate(8deg);
}

.iss-signal {
  top: 4%;
  right: 8%;
  width: 7px;
  height: 7px;
  background: #f5a524;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 165, 36, 0.8);
}
.hero-astronaut {
  top: 24%;
  right: 40%;
  z-index: 5;
  width: clamp(84px, 9vw, 132px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
  transform-origin: 50% 50%;
  animation: heroAstronautFloat 7200ms ease-in-out infinite;
}
.rocket {
  right: var(--rocket-right);
  bottom: var(--launch-bottom);
  width: 38px;
  height: 108px;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, 0.2) 0 12%, transparent 13% 72%, rgba(15, 23, 32, 0.18) 73% 100%),
    linear-gradient(90deg, #c6d2dc 0 16%, #ffffff 17% 66%, #a9b8c7 67% 100%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px 24px 10px 10px;
  box-shadow:
    inset 6px 0 10px rgba(255, 255, 255, 0.44),
    inset -7px 0 9px rgba(15, 23, 32, 0.18),
    0 0 34px rgba(255, 255, 255, 0.2);
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: rocketLaunch 10.8s cubic-bezier(0.28, 0.84, 0.38, 1) infinite;
}

.rocket::before {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 19px solid transparent;
  border-bottom: 32px solid #d43f34;
  border-left: 19px solid transparent;
  content: "";
  filter: drop-shadow(0 -3px 8px rgba(232, 93, 72, 0.26));
  transform: translateX(-50%);
}

.rocket::after {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 5px;
  height: 82px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 62%);
  border-radius: 999px;
  content: "";
  opacity: 0.82;
}

.rocket-window {
  top: 20px;
  left: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle at 34% 29%, rgba(255, 255, 255, 0.9), transparent 23%),
    #0b5f9d;
  border: 3px solid rgba(116, 244, 223, 0.84);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(116, 244, 223, 0.45);
  transform: translateX(-50%);
}

.rocket-flag {
  top: 47px;
  left: 50%;
  z-index: 2;
  width: 23px;
  height: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
  border: 1px solid rgba(15, 23, 32, 0.24);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(15, 23, 32, 0.18);
  transform: translateX(-50%);
}

.rocket-flag::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid #000080;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.rocket-logo {
  top: 68px;
  left: 50%;
  z-index: 2;
  width: 22px;
  height: 19px;
  overflow: hidden;
  background: #ffffff url("/assets/medley-logo.png") center / contain no-repeat;
  border: 1px solid rgba(15, 23, 32, 0.22);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(15, 23, 32, 0.2);
  transform: translateX(-50%);
}

.rocket-fin {
  bottom: 8px;
  width: 17px;
  height: 28px;
  background: linear-gradient(135deg, #f16f52, #b9342c);
  filter: drop-shadow(0 2px 4px rgba(15, 23, 32, 0.24));
}

.rocket-fin-left {
  left: -12px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.rocket-fin-right {
  right: -12px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.rocket-flame {
  left: 50%;
  bottom: -48px;
  z-index: -1;
  width: 22px;
  height: 58px;
  background:
    radial-gradient(circle at 50% 18%, #ffffff 0 11%, transparent 12%),
    linear-gradient(180deg, #ffffff 0%, #f5c252 27%, #f5a524 47%, #e85d48 100%);
  border-radius: 50% 50% 48% 48%;
  filter: blur(0.25px) drop-shadow(0 0 14px rgba(245, 165, 36, 0.66));
  clip-path: polygon(50% 0, 82% 28%, 62% 100%, 50% 86%, 36% 100%, 18% 28%);
  transform: translateX(-50%);
  animation: flamePulse 220ms ease-in-out infinite;
}

.rocket-flame::before,
.rocket-flame::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.rocket-flame::before {
  top: 8px;
  width: 11px;
  height: 35px;
  background: linear-gradient(180deg, #ffffff, #f5a524);
  border-radius: 999px;
  opacity: 0.82;
}

.rocket-flame::after {
  bottom: -18px;
  width: 44px;
  height: 22px;
  background: rgba(232, 93, 72, 0.22);
  border-radius: 50%;
  filter: blur(6px);
}

.launch-plume {
  right: calc(var(--rocket-right) - 54px);
  bottom: calc(var(--launch-bottom) - 70px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(245, 165, 36, 0.3) 42%, rgba(232, 93, 72, 0.08) 72%, transparent 74%);
  border-radius: 50%;
  filter: blur(7px);
  mix-blend-mode: screen;
  animation: plumePulse 10.8s ease-in-out infinite;
}

.plume-a {
  width: 104px;
  height: 48px;
}

.plume-b {
  right: calc(var(--rocket-right) - 78px);
  bottom: calc(var(--launch-bottom) - 88px);
  width: 144px;
  height: 66px;
  background: rgba(232, 93, 72, 0.2);
  animation-delay: 120ms;
}

.plume-c {
  right: calc(var(--rocket-right) - 28px);
  bottom: calc(var(--launch-bottom) - 48px);
  width: 62px;
  height: 34px;
  background: rgba(255, 255, 255, 0.24);
  animation-delay: 240ms;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, 790px);
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #74f4df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #071016;
  background: var(--amber);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.telemetry-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  width: min(780px, 100%);
  margin-top: 66px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.telemetry-panel div {
  min-width: 0;
  padding: 16px;
  background: rgba(8, 13, 20, 0.5);
}

.telemetry-panel span,
.telemetry-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.telemetry-panel strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1;
}

.telemetry-panel small {
  display: inline-block;
  margin-left: 3px;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 76px);
}

.section-light {
  background: var(--paper);
}

.section-steel {
  color: var(--white);
  background: #202830;
}

.section-dark {
  color: var(--white);
  background: #0b1017;
}

.section-navigation {
  background: #ffffff;
}
.section-space-biomechanics {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 165, 36, 0.14), transparent 28%),
    radial-gradient(circle at 22% 70%, rgba(116, 244, 223, 0.12), transparent 32%),
    linear-gradient(135deg, #08111c 0%, #111b27 50%, #171d25 100%);
}

.section-space-biomechanics::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 82px);
  content: "";
  pointer-events: none;
}

.space-biomechanics-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.space-biomechanics-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.mission-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mission-panel {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.mission-panel span,
.mission-panel strong,
.mission-panel p {
  display: block;
}

.mission-panel span {
  color: #74f4df;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mission-panel strong {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.mission-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.mission-panel-moon {
  border-left: 3px solid rgba(116, 244, 223, 0.72);
}

.mission-panel-mars {
  border-left: 3px solid rgba(232, 93, 72, 0.78);
}

.lunar-rover-scene {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.18), transparent 12%),
    radial-gradient(circle at 20% 22%, rgba(116, 244, 223, 0.1), transparent 24%),
    linear-gradient(180deg, #070e18 0%, #101925 52%, #28303a 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.lunar-rover-scene span,
.lunar-rover-scene div {
  position: absolute;
}

.space-star {
  z-index: 1;
  width: 5px;
  height: 5px;
  background: #f5c252;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(245, 197, 82, 0.7);
  animation: starTwinkle 2800ms ease-in-out infinite;
}

.space-star-one {
  top: 18%;
  left: 18%;
}

.space-star-two {
  top: 30%;
  right: 15%;
  animation-delay: 480ms;
}

.space-star-three {
  top: 10%;
  right: 38%;
  animation-delay: 920ms;
}

.mission-planet {
  z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
}

.mission-earth {
  top: 16%;
  right: 14%;
  width: 62px;
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse at 30% 42%, rgba(57, 188, 125, 0.86) 0 16%, transparent 17%),
    radial-gradient(ellipse at 68% 62%, rgba(63, 177, 126, 0.74) 0 11%, transparent 12%),
    linear-gradient(135deg, #37b7e5, #0b568d 62%, #092a46);
  animation: missionPlanetFloat 6800ms ease-in-out infinite;
}

.mission-mars {
  top: 24%;
  right: 31%;
  width: 38px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #f0774d, #9b342a 62%, #54201b);
  animation: missionPlanetFloat 7800ms ease-in-out infinite reverse;
}

.moon-horizon {
  right: -9%;
  bottom: -24%;
  left: -9%;
  z-index: 3;
  height: 52%;
  background:
    radial-gradient(ellipse at 22% 64%, rgba(16, 22, 29, 0.22) 0 8%, transparent 9%),
    radial-gradient(ellipse at 62% 52%, rgba(16, 22, 29, 0.18) 0 9%, transparent 10%),
    linear-gradient(180deg, #d7d8d2 0%, #a8aaa8 55%, #777b7e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  box-shadow: inset 0 32px 48px rgba(255, 255, 255, 0.16);
}

.moon-crater {
  z-index: 4;
  background: radial-gradient(ellipse, rgba(32, 39, 47, 0.26), rgba(255, 255, 255, 0.09) 68%, transparent 70%);
  border-radius: 50%;
}

.moon-crater-one {
  left: 17%;
  bottom: 36%;
  width: 112px;
  height: 28px;
}

.moon-crater-two {
  right: 23%;
  bottom: 31%;
  width: 78px;
  height: 20px;
}

.moon-crater-three {
  left: 51%;
  bottom: 54%;
  width: 46px;
  height: 14px;
}

.mission-rover {
  left: 12%;
  bottom: 29%;
  z-index: 6;
  width: 188px;
  height: 112px;
  animation: roverTraverse 9200ms ease-in-out infinite;
}

.rover-shadow {
  left: 14px;
  bottom: -10px;
  width: 154px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(8, 13, 20, 0.34), transparent 72%);
  border-radius: 50%;
  animation: roverShadow 9200ms ease-in-out infinite;
}

.rover-body {
  left: 42px;
  bottom: 36px;
  width: 96px;
  height: 39px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 12px),
    linear-gradient(135deg, #dce5eb, #8e9da8 62%, #566673);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px 8px 6px 6px;
  box-shadow: inset 0 5px 12px rgba(255, 255, 255, 0.26);
  animation: roverBodyBounce 9200ms ease-in-out infinite;
}

.rover-deck {
  left: 54px;
  bottom: 74px;
  width: 72px;
  height: 14px;
  background: linear-gradient(90deg, #74f4df, #2aa8a0);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-5deg);
}

.rover-mast {
  left: 92px;
  bottom: 84px;
  width: 4px;
  height: 42px;
  background: #dfe8ef;
  border-radius: 999px;
  transform-origin: 50% 100%;
  animation: roverMastScan 3600ms ease-in-out infinite;
}

.rover-camera {
  left: 76px;
  bottom: 121px;
  width: 37px;
  height: 18px;
  background: #1f2933;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 5px;
  transform-origin: 50% 100%;
  animation: roverMastScan 3600ms ease-in-out infinite;
}

.rover-camera::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 7px;
  height: 7px;
  background: #8ed5ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(142, 213, 255, 0.76);
  content: "";
  transform: translateY(-50%);
}

.rover-antenna {
  left: 126px;
  bottom: 73px;
  width: 3px;
  height: 48px;
  background: #f4f6f8;
  border-radius: 999px;
  transform: rotate(38deg);
  transform-origin: 50% 100%;
}

.rover-signal {
  left: 143px;
  bottom: 112px;
  border: 2px solid rgba(116, 244, 223, 0.68);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-28deg);
  animation: roverSignal 2300ms ease-out infinite;
}

.rover-signal-one {
  width: 34px;
  height: 34px;
}

.rover-signal-two {
  width: 54px;
  height: 54px;
  animation-delay: 460ms;
}

.rover-arm {
  right: 21px;
  bottom: 51px;
  width: 56px;
  height: 5px;
  background: #dfe8ef;
  border-radius: 999px;
  transform: rotate(28deg);
  transform-origin: 0 50%;
  animation: roverArmSample 5200ms ease-in-out infinite;
}

.rover-arm::after {
  position: absolute;
  right: -7px;
  top: -5px;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 165, 36, 0.58);
  content: "";
}

.rover-wheel {
  bottom: 20px;
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle, #dfe8ef 0 18%, transparent 19%),
    repeating-conic-gradient(from 0deg, #252f38 0 12deg, #7f8b95 12deg 25deg);
  border: 5px solid #202832;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.16);
  animation: roverWheelSpin 9200ms linear infinite;
}

.rover-wheel-front {
  right: 24px;
}

.rover-wheel-back {
  left: 24px;
}

.rover-dust {
  bottom: 15px;
  width: 18px;
  height: 9px;
  background: rgba(215, 216, 210, 0.54);
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0;
  animation: roverDust 9200ms ease-in-out infinite;
}

.rover-dust-one {
  left: 18px;
}

.rover-dust-two {
  left: 44px;
  animation-delay: 500ms;
}

.mission-telemetry {
  right: 22px;
  bottom: 22px;
  z-index: 8;
  min-width: 140px;
  padding: 13px 15px;
  background: rgba(8, 13, 20, 0.72);
  border: 1px solid rgba(116, 244, 223, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.mission-telemetry span,
.mission-telemetry strong {
  display: block;
}

.mission-telemetry span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.mission-telemetry strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}

.section-grid-reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.section-intro p:not(.eyebrow),
.section-header p:not(.eyebrow),
.contact-panel p {
  max-width: 720px;
  color: rgba(15, 23, 32, 0.68);
  font-size: 1.02rem;
}

.section-steel .section-header p:not(.eyebrow),
.section-dark .contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.visual-lab {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(234, 239, 246, 0.84)),
    repeating-linear-gradient(0deg, transparent 0, transparent 37px, rgba(15, 23, 32, 0.05) 38px),
    repeating-linear-gradient(90deg, transparent 0, transparent 37px, rgba(15, 23, 32, 0.05) 38px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-lab canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.signal-readout {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: auto;
  min-width: 150px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(15, 23, 32, 0.84);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.signal-readout-alt {
  top: 96px;
  bottom: auto;
  border-left-color: var(--teal);
}

.signal-readout span,
.signal-readout strong {
  display: block;
}

.signal-readout span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-readout strong {
  margin-top: 4px;
  font-size: 1.15rem;
}

.section-header {
  max-width: 1030px;
  margin: 0 auto 38px;
}

.pipeline-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  max-width: 1460px;
  margin: 0 auto;
}

.pipeline-card,
.sector-card {
  position: relative;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
}

.pipeline-card {
  display: flex;
  min-height: 362px;
  padding: 16px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pipeline-card::before {
  position: absolute;
  top: 0;
  left: 18px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber), transparent);
  content: "";
}

.pipeline-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: #071016;
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.pipeline-visual {
  position: relative;
  z-index: 1;
  height: 112px;
  margin: 0 0 18px 15px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 166, 160, 0.12), rgba(245, 165, 36, 0.08)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.pipeline-visual span {
  position: absolute;
  display: block;
}

.pipeline-visual-marker .p1,
.pipeline-visual-yoga .p2,
.pipeline-visual-anthro .p2 {
  width: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 99px;
  transform-origin: 50% 100%;
}

.pipeline-visual-marker .p1 {
  top: 24px;
  left: 50%;
  height: 45px;
  animation: pipelineLean 1800ms ease-in-out infinite;
}

.pipeline-visual-marker .p2,
.pipeline-visual-marker .p3,
.pipeline-visual-marker .p4,
.pipeline-visual-marker .p5 {
  height: 4px;
  background: rgba(116, 244, 223, 0.88);
  border-radius: 99px;
  transform-origin: 0 50%;
}

.pipeline-visual-marker .p2 {
  top: 34px;
  left: 39%;
  width: 46px;
  transform: rotate(10deg);
  animation: segmentSwing 1800ms ease-in-out infinite;
}

.pipeline-visual-marker .p3 {
  top: 67px;
  left: 42%;
  width: 40px;
  transform: rotate(-6deg);
}

.pipeline-visual-marker .p4 {
  top: 68px;
  left: 51%;
  width: 42px;
  transform: rotate(56deg);
  animation: segmentSwing 1800ms ease-in-out infinite reverse;
}

.pipeline-visual-marker .p5 {
  top: 68px;
  left: 51%;
  width: 42px;
  transform: rotate(118deg);
  animation: segmentSwing 1800ms ease-in-out infinite;
}

.pipeline-visual-marker .p6,
.pipeline-visual-marker .p7,
.pipeline-visual-marker .p8 {
  width: 13px;
  height: 13px;
  background: var(--amber);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: markerPulse 1400ms ease-in-out infinite;
}

.pipeline-visual-marker .p6 {
  top: 18px;
  left: calc(50% - 5px);
}

.pipeline-visual-marker .p7 {
  top: 61px;
  left: 39%;
  animation-delay: 180ms;
}

.pipeline-visual-marker .p8 {
  top: 85px;
  left: 64%;
  animation-delay: 320ms;
}

.pipeline-visual-markerless .p1 {
  inset: 16px;
  border: 2px solid rgba(116, 244, 223, 0.6);
  border-radius: 8px;
}

.pipeline-visual-markerless .p2 {
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: 3px;
  background: var(--teal);
  border-radius: 99px;
  box-shadow: 0 0 14px rgba(116, 244, 223, 0.95);
  animation: scanSweep 1800ms ease-in-out infinite;
}

.pipeline-visual-markerless .p3,
.pipeline-visual-markerless .p4,
.pipeline-visual-markerless .p5 {
  height: 3px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 99px;
  transform-origin: 0 50%;
}

.pipeline-visual-markerless .p3 {
  top: 44px;
  left: 43%;
  width: 34px;
  transform: rotate(88deg);
}

.pipeline-visual-markerless .p4 {
  top: 68px;
  left: 46%;
  width: 39px;
  transform: rotate(34deg);
}

.pipeline-visual-markerless .p5 {
  top: 68px;
  left: 46%;
  width: 39px;
  transform: rotate(142deg);
}

.pipeline-visual-markerless .p6,
.pipeline-visual-markerless .p7,
.pipeline-visual-markerless .p8 {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 50%;
  animation: markerPulse 1200ms ease-in-out infinite;
}

.pipeline-visual-markerless .p6 {
  top: 38px;
  left: 45%;
}

.pipeline-visual-markerless .p7 {
  top: 86px;
  left: 26%;
  animation-delay: 160ms;
}

.pipeline-visual-markerless .p8 {
  top: 87px;
  left: 67%;
  animation-delay: 300ms;
}

.pipeline-visual-yoga .p1 {
  top: 16px;
  left: 48%;
  width: 16px;
  height: 16px;
  background: #f7d8ca;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: yogaBalance 2600ms ease-in-out infinite;
}

.pipeline-visual-yoga .p2 {
  top: 33px;
  left: calc(50% + 5px);
  height: 37px;
  animation: yogaBalance 2600ms ease-in-out infinite;
}

.pipeline-visual-yoga .p3,
.pipeline-visual-yoga .p4,
.pipeline-visual-yoga .p5,
.pipeline-visual-yoga .p6,
.pipeline-visual-yoga .p7 {
  height: 4px;
  background: rgba(116, 244, 223, 0.9);
  border-radius: 99px;
  transform-origin: 0 50%;
  animation: yogaPoseFlow 2600ms ease-in-out infinite;
}

.pipeline-visual-yoga .p3 {
  top: 42px;
  left: 51%;
  width: 43px;
  transform: rotate(-32deg);
}

.pipeline-visual-yoga .p4 {
  top: 43px;
  left: 51%;
  width: 39px;
  transform: rotate(206deg);
}

.pipeline-visual-yoga .p5 {
  top: 69px;
  left: 51%;
  width: 50px;
  transform: rotate(122deg);
}

.pipeline-visual-yoga .p6 {
  top: 70px;
  left: 51%;
  width: 45px;
  transform: rotate(24deg);
}

.pipeline-visual-yoga .p7 {
  top: 88px;
  left: 64%;
  width: 28px;
  transform: rotate(0deg);
}

.pipeline-visual-yoga .p8 {
  left: 18%;
  right: 16%;
  bottom: 16px;
  height: 2px;
  background: rgba(245, 165, 36, 0.68);
}

.pipeline-visual-imu .p1 {
  top: 38px;
  left: 36%;
  width: 58px;
  height: 38px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(116, 244, 223, 0.75);
  border-radius: 8px;
  animation: imuTilt 1700ms ease-in-out infinite;
}

.pipeline-visual-imu .p2,
.pipeline-visual-imu .p3,
.pipeline-visual-imu .p4 {
  left: 56%;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(116, 244, 223, 0.58);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: imuWave 1800ms ease-out infinite;
}

.pipeline-visual-imu .p2 {
  top: 28px;
}

.pipeline-visual-imu .p3 {
  top: 19px;
  width: 76px;
  height: 76px;
  animation-delay: 240ms;
}

.pipeline-visual-imu .p4 {
  top: 10px;
  width: 94px;
  height: 94px;
  animation-delay: 480ms;
}

.pipeline-visual-imu .p5,
.pipeline-visual-imu .p6,
.pipeline-visual-imu .p7 {
  top: 54px;
  left: 42%;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: markerPulse 1200ms ease-in-out infinite;
}

.pipeline-visual-imu .p6 {
  left: 51%;
  animation-delay: 200ms;
}

.pipeline-visual-imu .p7 {
  left: 60%;
  animation-delay: 400ms;
}

.pipeline-visual-force .p1 {
  left: 18%;
  right: 18%;
  bottom: 22px;
  height: 12px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 4px;
}

.pipeline-visual-force .p2 {
  left: 48%;
  bottom: 34px;
  width: 6px;
  height: 52px;
  background: var(--amber);
  border-radius: 99px;
  transform-origin: 50% 100%;
  animation: forceVector 1500ms ease-in-out infinite;
}

.pipeline-visual-force .p3,
.pipeline-visual-force .p4,
.pipeline-visual-force .p5,
.pipeline-visual-force .p6 {
  bottom: 44px;
  width: 4px;
  background: rgba(116, 244, 223, 0.82);
  border-radius: 99px;
  animation: graphBar 1500ms ease-in-out infinite;
}

.pipeline-visual-force .p3 {
  left: 22%;
  height: 18px;
}

.pipeline-visual-force .p4 {
  left: 31%;
  height: 34px;
  animation-delay: 120ms;
}

.pipeline-visual-force .p5 {
  left: 40%;
  height: 26px;
  animation-delay: 240ms;
}

.pipeline-visual-force .p6 {
  left: 58%;
  height: 39px;
  animation-delay: 360ms;
}

.pipeline-visual-force .p7 {
  top: 25px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--amber);
  border-right: 4px solid var(--amber);
  transform: translateX(-50%) rotate(-45deg);
  animation: forceTip 1500ms ease-in-out infinite;
}

.pipeline-visual-anthro .p1 {
  top: 13px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: #f7d8ca;
  border-radius: 50%;
}

.pipeline-visual-anthro .p2 {
  top: 31px;
  left: 50%;
  height: 55px;
}

.pipeline-visual-anthro .p3,
.pipeline-visual-anthro .p4,
.pipeline-visual-anthro .p5,
.pipeline-visual-anthro .p6 {
  height: 3px;
  background: rgba(116, 244, 223, 0.88);
  border-radius: 99px;
}

.pipeline-visual-anthro .p3 {
  top: 43px;
  left: 27%;
  width: 70px;
  animation: anthropometricSpan 1700ms ease-in-out infinite;
}

.pipeline-visual-anthro .p4 {
  top: 70px;
  left: 35%;
  width: 48px;
}

.pipeline-visual-anthro .p5 {
  top: 87px;
  left: 31%;
  width: 26px;
  transform: rotate(65deg);
}

.pipeline-visual-anthro .p6 {
  top: 87px;
  left: 51%;
  width: 26px;
  transform: rotate(115deg);
}

.pipeline-visual-anthro .p7,
.pipeline-visual-anthro .p8 {
  top: 18px;
  width: 2px;
  height: 72px;
  background: var(--amber);
  animation: measureTick 1600ms ease-in-out infinite;
}

.pipeline-visual-anthro .p7 {
  left: 20%;
}

.pipeline-visual-anthro .p8 {
  right: 20%;
  animation-delay: 260ms;
}

.pipeline-visual-drone .p1 {
  top: 28px;
  left: 18%;
  width: 64%;
  height: 44px;
  border-top: 2px dashed rgba(116, 244, 223, 0.8);
  border-right: 2px dashed rgba(116, 244, 223, 0.8);
  border-radius: 0 30px 0 0;
}

.pipeline-visual-drone .p2,
.pipeline-visual-drone .p3,
.pipeline-visual-drone .p4 {
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 165, 36, 0.13);
}

.pipeline-visual-drone .p2 {
  top: 22px;
  left: 16%;
}

.pipeline-visual-drone .p3 {
  top: 22px;
  right: 16%;
}

.pipeline-visual-drone .p4 {
  top: 66px;
  right: 16%;
}

.pipeline-visual-drone .p5 {
  top: 16px;
  left: 15%;
  width: 28px;
  height: 28px;
  background: var(--teal);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: droneCardRoute 2600ms ease-in-out infinite;
}

.pipeline-visual-drone .p6,
.pipeline-visual-drone .p7,
.pipeline-visual-drone .p8 {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  animation: markerPulse 1200ms ease-in-out infinite;
}

.pipeline-visual-drone .p6 {
  top: 41px;
  left: 37%;
}

.pipeline-visual-drone .p7 {
  top: 27px;
  left: 55%;
  animation-delay: 160ms;
}

.pipeline-visual-drone .p8 {
  top: 62px;
  left: 72%;
  animation-delay: 320ms;
}

.pipeline-card h3,
.pipeline-card p {
  position: relative;
  margin-left: 15px;
}

.pipeline-card h3 {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.pipeline-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.44;
}

.pipeline-card.is-visible,
.sector-card.is-visible {
  animation: riseIn 560ms ease both;
  animation-delay: var(--reveal-delay, 0ms);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1380px;
  margin: 0 auto;
}

.sector-card {
  display: flex;
  min-height: 452px;
  padding: 22px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(15, 23, 32, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.sector-card:hover {
  border-color: rgba(16, 166, 160, 0.28);
  box-shadow: 0 22px 48px rgba(15, 23, 32, 0.12);
  transform: translateY(-4px);
}

.sector-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 116px;
  height: 116px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(16, 166, 160, 0.2) 46%),
    linear-gradient(45deg, rgba(245, 165, 36, 0.18), transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sector-visual,
.sector-card h3,
.sector-card p,
.metric-list {
  position: relative;
  z-index: 1;
}

.sector-visual {
  height: 170px;
  margin-bottom: 20px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 14%, rgba(116, 244, 223, 0.16), transparent 31%),
    linear-gradient(135deg, rgba(12, 19, 27, 0.98), rgba(37, 48, 58, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(15, 23, 32, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.18);
}

.sector-visual span {
  position: absolute;
  display: block;
}

.sector-visual span::before,
.sector-visual span::after {
  position: absolute;
  display: block;
  content: "";
}

.sector-visual::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(116, 244, 223, 0.16);
  border-radius: 8px;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.sector-visual::after {
  position: absolute;
  right: 8%;
  bottom: -30px;
  left: 8%;
  height: 54px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 70%);
  content: "";
  pointer-events: none;
}
.sector-visual-sports-runner {
  background:
    radial-gradient(circle at 54% 45%, rgba(116, 244, 223, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(250, 253, 255, 0.98), rgba(230, 239, 248, 0.94));
  border-color: rgba(116, 244, 223, 0.26);
  box-shadow:
    inset 0 0 40px rgba(116, 244, 223, 0.1),
    0 10px 26px rgba(15, 23, 32, 0.1);
}

.sector-visual-sports-runner::before {
  inset: 12px;
  border-color: rgba(116, 244, 223, 0.2);
}

.sector-visual-sports-runner::after {
  right: 16%;
  bottom: 14px;
  left: 16%;
  z-index: 2;
  height: 26px;
  background: radial-gradient(ellipse, rgba(15, 23, 32, 0.22), transparent 70%);
  opacity: 0.7;
  animation: sectorRunnerShadow 2400ms ease-in-out infinite;
}

.runner-track {
  right: 24px;
  bottom: 30px;
  left: 24px;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(116, 244, 223, 0.74), rgba(245, 165, 36, 0.82));
  border-radius: 999px;
}

.runner-track::before {
  right: 8%;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(15, 23, 32, 0.32) 0 36px, transparent 36px 68px);
  content: "";
}

.runner-shadow {
  left: 28%;
  bottom: 24px;
  z-index: 2;
  width: 44%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(15, 23, 32, 0.18), transparent 72%);
  border-radius: 50%;
  animation: sectorRunnerShadow 2400ms ease-in-out infinite;
}

.sector-runner-art {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 4;
  display: block;
  width: min(82%, 330px);
  max-height: 158px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 32, 0.2));
  transform-origin: 50% 82%;
  animation: sectorRunnerFloat 2400ms ease-in-out infinite;
}

.sector-visual-astronaut .p1 {
  left: -42px;
  bottom: -58px;
  z-index: 1;
  width: 158px;
  height: 158px;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(135deg, #0c78b8 0 38%, #0d9e84 39% 52%, #124d76 53% 100%);
  border: 1px solid rgba(116, 244, 223, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(16, 166, 160, 0.28);
  animation: sectorPlanetFloat 5600ms ease-in-out infinite;
}

.sector-visual-astronaut .p1::before {
  inset: 18px -34px;
  background:
    radial-gradient(ellipse at 25% 34%, rgba(60, 184, 130, 0.74) 0 10%, transparent 11%),
    radial-gradient(ellipse at 62% 52%, rgba(60, 184, 130, 0.6) 0 14%, transparent 15%),
    radial-gradient(ellipse at 45% 70%, rgba(255, 255, 255, 0.46) 0 7%, transparent 8%);
  animation: sectorEarthBand 7800ms linear infinite;
}

.sector-visual-astronaut .p2 {
  top: 80px;
  left: 34%;
  z-index: 5;
  width: 19px;
  height: 58px;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, 0.18) 0 16%, transparent 17% 70%, rgba(15, 23, 32, 0.22) 71%),
    linear-gradient(180deg, #f8fbfd 0 62%, #dbe5eb 63% 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 13px 13px 5px 5px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
  transform-origin: 50% 100%;
  animation: sectorRocketFlight 4600ms cubic-bezier(0.32, 0.79, 0.32, 1) infinite;
}

.sector-visual-astronaut .p2::before {
  top: -15px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #e85d48;
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}

.sector-visual-astronaut .p2::after {
  top: 16px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #0b5f9d;
  border: 2px solid rgba(116, 244, 223, 0.8);
  border-radius: 50%;
  transform: translateX(-50%);
}

.sector-visual-astronaut .p3 {
  top: 132px;
  left: calc(34% + 4px);
  z-index: 4;
  width: 11px;
  height: 34px;
  background: linear-gradient(180deg, #ffffff, #f5a524 42%, #e85d48);
  border-radius: 50% 50% 46% 46%;
  filter: blur(0.2px) drop-shadow(0 0 12px rgba(245, 165, 36, 0.64));
  clip-path: polygon(50% 0, 86% 32%, 56% 100%, 50% 83%, 38% 100%, 14% 32%);
  transform-origin: 50% 0;
  animation: sectorRocketExhaust 4600ms cubic-bezier(0.32, 0.79, 0.32, 1) infinite;
}

.sector-visual-astronaut .p4 {
  top: 31px;
  right: 28px;
  z-index: 3;
  width: 33px;
  height: 33px;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.88), transparent 14%),
    radial-gradient(circle at 68% 64%, rgba(96, 106, 116, 0.42), transparent 18%),
    linear-gradient(135deg, #f1eddb, #9aa5af);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.22);
  animation: sectorMoonHover 4200ms ease-in-out infinite;
}

.sector-visual-astronaut .p5 {
  top: 43px;
  left: 28%;
  z-index: 2;
  width: 54%;
  height: 82px;
  border-top: 2px dashed rgba(245, 165, 36, 0.46);
  border-right: 2px dashed rgba(116, 244, 223, 0.18);
  border-radius: 50% 70% 0 0;
  transform: rotate(-13deg);
  animation: sectorOrbitPulse 2200ms ease-in-out infinite;
}

.sector-visual-astronaut .p6,
.sector-visual-astronaut .p9,
.sector-visual-astronaut .p10 {
  z-index: 3;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(245, 165, 36, 0.8);
  animation: markerPulse 1500ms ease-in-out infinite;
}

.sector-visual-astronaut .p6 {
  top: 32px;
  left: 58%;
}

.sector-visual-astronaut .p7 {
  top: 26px;
  left: 18px;
  z-index: 3;
  width: 78px;
  height: 20px;
  border-top: 3px solid rgba(245, 165, 36, 0.5);
  transform: rotate(18deg);
  animation: sectorSatelliteDrift 5200ms linear infinite;
}

.sector-visual-astronaut .p7::before,
.sector-visual-astronaut .p7::after {
  top: -8px;
  width: 24px;
  height: 12px;
  background: rgba(116, 244, 223, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.sector-visual-astronaut .p7::before {
  left: 10px;
}

.sector-visual-astronaut .p7::after {
  right: 10px;
}

.sector-visual-astronaut .p8 {
  inset: 21px 44px;
  z-index: 1;
  border: 1px dashed rgba(245, 165, 36, 0.42);
  border-radius: 50%;
  animation: orbitRoll 6200ms linear infinite;
}

.sector-visual-astronaut .p9 {
  right: 30px;
  top: 76px;
}

.sector-visual-astronaut .p10 {
  left: 28px;
  bottom: 34px;
  animation-delay: 240ms;
}


.sector-visual-astronaut .p11 {
  top: 76px;
  left: 54%;
  z-index: 5;
  width: 25px;
  height: 36px;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, 0.16), transparent 42%, rgba(15, 23, 32, 0.2)),
    linear-gradient(180deg, #f8fbfd, #d7e2ea);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px 12px 8px 8px;
  box-shadow:
    inset 4px 0 7px rgba(255, 255, 255, 0.44),
    0 0 18px rgba(255, 255, 255, 0.16);
  transform: rotate(-16deg);
  transform-origin: 50% 45%;
  animation: sectorAstronautFloat 5200ms ease-in-out infinite;
}

.sector-visual-astronaut .p11::before {
  top: -27px;
  left: 50%;
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle at 58% 44%, rgba(116, 244, 223, 0.54) 0 14%, transparent 15%),
    radial-gradient(circle at 42% 40%, rgba(255, 255, 255, 0.8), transparent 31%),
    linear-gradient(135deg, #eef5f8, #9eaab4);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(116, 244, 223, 0.28);
  transform: translateX(-50%);
}

.sector-visual-astronaut .p11::after {
  top: 7px;
  right: -11px;
  width: 12px;
  height: 22px;
  background: linear-gradient(180deg, #82919d, #2a3540);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  box-shadow: -34px 5px 0 -3px rgba(245, 165, 36, 0.72);
}

.sector-visual-astronaut .p12 {
  top: 72px;
  left: calc(54% - 22px);
  z-index: 4;
  width: 76px;
  height: 62px;
  border-top: 2px dashed rgba(116, 244, 223, 0.34);
  border-radius: 50%;
  transform: rotate(-18deg);
  transform-origin: 48px 36px;
  animation: sectorAstronautFloat 5200ms ease-in-out infinite;
}

.sector-visual-astronaut .p12::before {
  top: 16px;
  left: 15px;
  width: 62px;
  height: 5px;
  background: linear-gradient(90deg, #eaf2f6, #ffffff, #c4d0d8);
  border-radius: 999px;
  box-shadow: 6px 36px 0 -1px rgba(234, 242, 246, 0.92);
  transform: rotate(-20deg);
  transform-origin: 50% 50%;
}

.sector-visual-astronaut .p12::after {
  top: 35px;
  left: 19px;
  width: 58px;
  height: 5px;
  background: linear-gradient(90deg, #d6e0e7, #ffffff, #bdcbd4);
  border-radius: 999px;
  box-shadow: -14px -25px 0 -1px rgba(234, 242, 246, 0.9);
  transform: rotate(42deg);
  transform-origin: 0 50%;
}

.sector-astronaut-art {
  position: absolute;
  top: 28px;
  left: 55%;
  z-index: 7;
  width: clamp(104px, 31%, 148px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.28));
  transform-origin: 50% 50%;
  animation: sectorAstronautImageFloat 5600ms ease-in-out infinite;
}
.sector-visual-defense .p1 {
  left: 22px;
  bottom: 29px;
  z-index: 3;
  width: 20px;
  height: 42px;
  background: linear-gradient(180deg, #455463, #17212b);
  border-radius: 9px 9px 5px 5px;
  box-shadow: 14px 20px 0 -10px rgba(245, 165, 36, 0.52);
}

.sector-visual-defense .p1::before {
  top: -18px;
  left: 1px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #d8e0e7, #6e7c88);
  border-radius: 50% 50% 42% 42%;
}

.sector-visual-defense .p1::after {
  top: 15px;
  left: 15px;
  width: 42px;
  height: 5px;
  background: rgba(116, 244, 223, 0.75);
  border-radius: 999px;
  transform: rotate(-12deg);
  transform-origin: 0 50%;
}

.sector-visual-defense .p2,
.sector-visual-defense .p3,
.sector-visual-defense .p4,
.sector-visual-defense .p5,
.sector-visual-defense .p6 {
  z-index: 5;
  animation: sectorDroneFlight 5200ms cubic-bezier(0.35, 0.02, 0.26, 1) infinite;
}

.sector-visual-defense .p2 {
  top: 42px;
  left: 62px;
  width: 30px;
  height: 25px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(135deg, #f4f8fb 0 42%, #728393 43% 55%, #161f29 56% 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 9px 9px 12px 12px;
  box-shadow: 0 0 18px rgba(116, 244, 223, 0.24);
}

.sector-visual-defense .p2::before,
.sector-visual-defense .p2::after {
  top: 11px;
  left: -27px;
  width: 84px;
  height: 5px;
  background: linear-gradient(90deg, #111820, #e8eef2 50%, #111820);
  border-radius: 999px;
  transform-origin: 50% 50%;
}

.sector-visual-defense .p2::before {
  transform: rotate(38deg);
}

.sector-visual-defense .p2::after {
  transform: rotate(-38deg);
}

.sector-visual-defense .p3,
.sector-visual-defense .p4,
.sector-visual-defense .p5,
.sector-visual-defense .p6 {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, #edf4f7 0 14%, #25313d 16% 30%, rgba(116, 244, 223, 0.12) 32% 72%, transparent 73%);
  border: 1px solid rgba(116, 244, 223, 0.42);
  border-radius: 50%;
}

.sector-visual-defense .p3::before,
.sector-visual-defense .p4::before,
.sector-visual-defense .p5::before,
.sector-visual-defense .p6::before {
  top: 50%;
  left: 50%;
  width: 38px;
  height: 5px;
  background: linear-gradient(90deg, transparent 0 8%, rgba(234, 241, 245, 0.9) 8% 92%, transparent 92%);
  border-radius: 999px;
  filter: blur(0.5px);
  animation: sectorRotorSpin 230ms linear infinite;
}

.sector-visual-defense .p3 {
  top: 14px;
  left: 30px;
}

.sector-visual-defense .p4 {
  top: 14px;
  left: 96px;
}

.sector-visual-defense .p5 {
  top: 70px;
  left: 96px;
}

.sector-visual-defense .p6 {
  top: 70px;
  left: 30px;
}

.sector-visual-defense .p7 {
  top: 80px;
  left: 70px;
  z-index: 2;
  width: 112px;
  height: 52px;
  background: linear-gradient(90deg, rgba(116, 244, 223, 0.22), rgba(245, 165, 36, 0.06), transparent);
  clip-path: polygon(0 38%, 100% 0, 92% 100%, 0 62%);
  filter: blur(1px);
  transform-origin: 0 50%;
  animation: sectorScanCone 2600ms ease-in-out infinite;
}

.sector-visual-defense .p8 {
  left: 18px;
  right: 18px;
  bottom: 21px;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, rgba(116, 244, 223, 0.72), rgba(245, 165, 36, 0.74));
  border-radius: 999px;
}

.sector-visual-defense .p9,
.sector-visual-defense .p10 {
  z-index: 4;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(245, 165, 36, 0.12);
  animation: markerPulse 1500ms ease-in-out infinite;
}

.sector-visual-defense .p9 {
  top: 103px;
  left: 39%;
}

.sector-visual-defense .p10 {
  top: 53px;
  right: 24px;
  animation-delay: 300ms;
}

.sector-visual-sports .p1 {
  top: 30px;
  left: calc(50% + 42px);
  z-index: 6;
  width: 27px;
  height: 27px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.5), transparent 25%),
    linear-gradient(135deg, #f6d0bf, #be8a7a);
  border: 3px solid rgba(232, 238, 242, 0.58);
  border-radius: 50%;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);
  animation: sectorRunHead 1280ms ease-in-out infinite;
}

.sector-visual-sports .p2 {
  top: 70px;
  left: 45%;
  z-index: 5;
  width: 72px;
  height: 16px;
  background: linear-gradient(90deg, #11aaa3, #dce7ee 72%, #f2f6f8);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(116, 244, 223, 0.22);
  transform-origin: 12% 50%;
  animation: sectorRunTorso 1280ms ease-in-out infinite;
}

.sector-visual-sports .p2::before {
  top: 3px;
  left: -10px;
  width: 21px;
  height: 13px;
  background: rgba(216, 224, 231, 0.92);
  border-radius: 9px;
}

.sector-visual-sports .p2::after {
  top: 3px;
  right: -5px;
  width: 11px;
  height: 11px;
  background: rgba(116, 244, 223, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(116, 244, 223, 0.5);
}

.sector-visual-sports .p3,
.sector-visual-sports .p4,
.sector-visual-sports .p5,
.sector-visual-sports .p6 {
  z-index: 5;
  height: 7px;
  border-radius: 999px;
  transform-origin: 0 50%;
}

.sector-visual-sports .p3,
.sector-visual-sports .p4 {
  top: 68px;
  left: calc(50% + 35px);
  width: 42px;
  background: rgba(238, 244, 247, 0.92);
}

.sector-visual-sports .p3 {
  animation: sectorRunArmA 1280ms ease-in-out infinite;
}

.sector-visual-sports .p4 {
  opacity: 0.82;
  animation: sectorRunArmB 1280ms ease-in-out infinite;
}

.sector-visual-sports .p3::after,
.sector-visual-sports .p4::after,
.sector-visual-sports .p5::after,
.sector-visual-sports .p6::after {
  top: 0;
  left: calc(100% - 2px);
  width: 34px;
  height: 7px;
  background: inherit;
  border-radius: 999px;
  transform-origin: 0 50%;
}

.sector-visual-sports .p3::after {
  transform: rotate(-48deg);
}

.sector-visual-sports .p4::after {
  transform: rotate(44deg);
}

.sector-visual-sports .p5,
.sector-visual-sports .p6 {
  top: 91px;
  left: calc(45% + 3px);
  width: 58px;
  height: 8px;
  background: #eef4f7;
}

.sector-visual-sports .p5 {
  z-index: 6;
  animation: sectorRunLegLead 1280ms ease-in-out infinite;
}

.sector-visual-sports .p6 {
  z-index: 4;
  opacity: 0.78;
  animation: sectorRunLegTrail 1280ms ease-in-out infinite;
}

.sector-visual-sports .p5::before,
.sector-visual-sports .p6::before {
  top: -2px;
  right: -6px;
  width: 11px;
  height: 11px;
  background: rgba(116, 244, 223, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(116, 244, 223, 0.45);
}

.sector-visual-sports .p5::after {
  width: 50px;
  transform: rotate(58deg);
}

.sector-visual-sports .p6::after {
  width: 48px;
  transform: rotate(-55deg);
}

.sector-visual-sports .p7 {
  left: 16px;
  right: 16px;
  bottom: 31px;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, rgba(116, 244, 223, 0.56), rgba(245, 165, 36, 0.78));
  border-radius: 999px;
}

.sector-visual-sports .p8 {
  top: 58px;
  left: 12%;
  z-index: 1;
  width: 52%;
  height: 54px;
  border-top: 3px solid rgba(116, 244, 223, 0.48);
  border-radius: 50%;
  opacity: 0.76;
  animation: sectorRunTrail 1280ms ease-in-out infinite;
}

.sector-visual-sports .p9 {
  left: calc(45% + 28px);
  bottom: 38px;
  z-index: 3;
  width: 6px;
  height: 68px;
  background: linear-gradient(180deg, var(--amber), rgba(245, 165, 36, 0.12));
  border-radius: 999px;
  transform-origin: 50% 100%;
  animation: sectorRunForce 1280ms ease-in-out infinite;
}

.sector-visual-sports .p9::before {
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 5px solid var(--amber);
  border-right: 5px solid var(--amber);
  transform: translateX(-50%) rotate(-45deg);
}

.sector-visual-sports .p10 {
  left: calc(45% - 5px);
  bottom: 30px;
  z-index: 6;
  width: 48px;
  height: 7px;
  background: #eef4f7;
  border-radius: 999px;
  box-shadow: 82px -2px 0 -1px rgba(238, 244, 247, 0.5);
  animation: sectorRunFoot 1280ms ease-in-out infinite;
}

.sector-visual-health .p1 {
  top: 34px;
  left: calc(42% + 31px);
  z-index: 6;
  width: 25px;
  height: 25px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.5), transparent 25%),
    linear-gradient(135deg, #f6d0bf, #b98375);
  border: 3px solid rgba(232, 238, 242, 0.48);
  border-radius: 50%;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
  animation: sectorClinicHead 1900ms ease-in-out infinite;
}

.sector-visual-health .p2 {
  top: 70px;
  left: 42%;
  z-index: 5;
  width: 58px;
  height: 15px;
  background: linear-gradient(90deg, #dfe8ee, rgba(116, 244, 223, 0.9));
  border-radius: 999px;
  transform-origin: 9% 50%;
  animation: sectorClinicTorso 1900ms ease-in-out infinite;
}

.sector-visual-health .p2::before {
  top: 3px;
  left: -8px;
  width: 18px;
  height: 12px;
  background: rgba(238, 244, 247, 0.85);
  border-radius: 8px;
}

.sector-visual-health .p2::after {
  top: 3px;
  right: -4px;
  width: 10px;
  height: 10px;
  background: rgba(245, 165, 36, 0.86);
  border-radius: 50%;
}

.sector-visual-health .p3,
.sector-visual-health .p4,
.sector-visual-health .p5,
.sector-visual-health .p6 {
  z-index: 5;
  height: 6px;
  border-radius: 999px;
  transform-origin: 0 50%;
}

.sector-visual-health .p3,
.sector-visual-health .p4 {
  top: 91px;
  left: calc(42% + 5px);
  width: 48px;
  background: #eef4f7;
}

.sector-visual-health .p3 {
  animation: sectorClinicLegA 1900ms ease-in-out infinite;
}

.sector-visual-health .p4 {
  opacity: 0.78;
  animation: sectorClinicLegB 1900ms ease-in-out infinite;
}

.sector-visual-health .p3::before,
.sector-visual-health .p4::before {
  top: -2px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: rgba(245, 165, 36, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(245, 165, 36, 0.42);
}

.sector-visual-health .p3::after,
.sector-visual-health .p4::after,
.sector-visual-health .p5::after,
.sector-visual-health .p6::after {
  top: 0;
  left: calc(100% - 2px);
  height: 6px;
  background: inherit;
  border-radius: 999px;
  transform-origin: 0 50%;
}

.sector-visual-health .p3::after {
  width: 42px;
  transform: rotate(54deg);
}

.sector-visual-health .p4::after {
  width: 40px;
  transform: rotate(-42deg);
}

.sector-visual-health .p5,
.sector-visual-health .p6 {
  top: 72px;
  left: calc(42% + 42px);
  width: 34px;
  background: rgba(238, 244, 247, 0.88);
}

.sector-visual-health .p5 {
  animation: sectorClinicArmA 1900ms ease-in-out infinite;
}

.sector-visual-health .p6 {
  opacity: 0.76;
  animation: sectorClinicArmB 1900ms ease-in-out infinite;
}

.sector-visual-health .p5::after {
  width: 28px;
  transform: rotate(-35deg);
}

.sector-visual-health .p6::after {
  width: 28px;
  transform: rotate(42deg);
}

.sector-visual-health .p7 {
  left: 18px;
  right: 110px;
  bottom: 30px;
  z-index: 2;
  height: 11px;
  background: linear-gradient(90deg, rgba(238, 244, 247, 0.86), rgba(116, 244, 223, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
}

.sector-visual-health .p7::before {
  right: -118px;
  bottom: 3px;
  width: 106px;
  height: 3px;
  background: linear-gradient(90deg, rgba(116, 244, 223, 0.6), rgba(245, 165, 36, 0.62));
  border-radius: 999px;
}

.sector-visual-health .p8 {
  top: 25px;
  right: 24px;
  z-index: 3;
  width: 92px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(116, 244, 223, 0.22);
  border-radius: 8px;
}

.sector-visual-health .p8::before {
  left: -18px;
  top: 26px;
  width: 132px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0 10%, var(--coral) 11% 17%, transparent 18% 31%, var(--coral) 32% 39%, transparent 40% 49%, var(--coral) 50% 57%, transparent 58% 100%);
  animation: sectorClinicTrace 1700ms linear infinite;
}

.sector-visual-health .p8::after {
  left: 13px;
  bottom: 10px;
  width: 62px;
  height: 28px;
  border-top: 3px solid rgba(116, 244, 223, 0.82);
  border-right: 3px solid transparent;
  border-radius: 50%;
  animation: sectorClinicCurve 1900ms ease-in-out infinite;
}

.sector-visual-health .p9 {
  top: 75px;
  left: calc(42% + 5px);
  z-index: 7;
  width: 9px;
  height: 9px;
  background: var(--amber);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow:
    23px 17px 0 -1px var(--amber),
    61px 46px 0 -1px var(--amber),
    -10px 52px 0 -1px var(--amber);
  animation: markerPulse 1400ms ease-in-out infinite;
}

.sector-visual-health .p10 {
  left: calc(42% + 38px);
  bottom: 41px;
  z-index: 3;
  width: 5px;
  height: 52px;
  background: linear-gradient(180deg, var(--amber), rgba(245, 165, 36, 0.12));
  border-radius: 999px;
  transform-origin: 50% 100%;
  animation: sectorClinicForce 1900ms ease-in-out infinite;
}

.sector-visual-health .p10::before {
  top: -7px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 4px solid var(--amber);
  border-right: 4px solid var(--amber);
  transform: translateX(-50%) rotate(-45deg);
}
.sector-card h3 {
  margin-bottom: 14px;
}

.sector-card p {
  color: rgba(15, 23, 32, 0.66);
}

.metric-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.metric-list li {
  padding: 7px 9px;
  color: var(--teal-dark);
  background: rgba(16, 166, 160, 0.1);
  border: 1px solid rgba(16, 166, 160, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.drone-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #18212b;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.45));
}

.route {
  position: absolute;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(16, 166, 160, 0.55);
  transform-origin: left center;
}

.route-a {
  top: 44%;
  left: 15%;
  width: 44%;
  transform: rotate(-20deg);
}

.route-b {
  top: 47%;
  left: 49%;
  width: 33%;
  transform: rotate(25deg);
}

.waypoint {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--amber);
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(245, 165, 36, 0.13);
}

.waypoint-one {
  top: 53%;
  left: 14%;
}

.waypoint-two {
  top: 32%;
  left: 55%;
}

.waypoint-three {
  top: 58%;
  right: 16%;
}

.drone {
  position: absolute;
  top: calc(53% - 46px);
  left: calc(14% - 46px);
  z-index: 4;
  width: 92px;
  height: 92px;
  background: none;
  border-radius: 0;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.38));
  transform-origin: 50% 50%;
  animation: dronePath 8s cubic-bezier(0.38, 0.02, 0.28, 1) infinite;
}

.drone::before,
.drone::after {
  position: absolute;
  left: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.drone::before {
  right: 18%;
  bottom: -13px;
  left: 18%;
  height: 12px;
  background: rgba(16, 166, 160, 0.28);
  border-radius: 50%;
  filter: blur(8px);
  animation: droneShadow 8s ease-in-out infinite;
}

.drone::after {
  bottom: -25px;
  width: 72px;
  height: 30px;
  border: 1px solid rgba(116, 244, 223, 0.16);
  border-top-color: rgba(116, 244, 223, 0.34);
  border-radius: 50%;
  opacity: 0.62;
  animation: droneDownwash 8s ease-in-out infinite;
}

.drone span {
  position: absolute;
  display: block;
}

.drone-arm {
  top: 43px;
  left: 11px;
  width: 70px;
  height: 7px;
  background:
    linear-gradient(90deg, #121a23, #dfe8ee 48%, #121a23),
    linear-gradient(#364451, #111820);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(116, 244, 223, 0.18);
  transform-origin: 50% 50%;
}

.drone-arm-a {
  transform: rotate(42deg);
}

.drone-arm-b {
  transform: rotate(-42deg);
}

.drone-body {
  top: 31px;
  left: 28px;
  z-index: 3;
  width: 36px;
  height: 32px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 19%),
    linear-gradient(135deg, #f1f6f8 0 36%, #8c9aaa 37% 52%, #202a34 53% 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px 10px 14px 14px;
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.42),
    inset -7px -6px 10px rgba(15, 23, 32, 0.24),
    0 0 20px rgba(116, 244, 223, 0.22);
  animation: droneHover 820ms ease-in-out infinite;
}

.drone-body::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 12px;
  height: 10px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 25%),
    #0b5f9d;
  border: 2px solid rgba(116, 244, 223, 0.78);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.drone-body::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 15px;
  height: 11px;
  background: #111820;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px 4px 7px 7px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.24);
  content: "";
  transform: translateX(-50%);
}

.drone-nose {
  top: 20px;
  left: 40px;
  z-index: 4;
  width: 12px;
  height: 17px;
  background: linear-gradient(180deg, #f8c86c, var(--amber));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 7px rgba(245, 165, 36, 0.44));
}

.drone-rotor {
  z-index: 2;
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 13%, #2a3540 15% 28%, transparent 30%),
    radial-gradient(circle, rgba(116, 244, 223, 0.2), rgba(116, 244, 223, 0.08) 46%, transparent 68%);
  border: 1px solid rgba(116, 244, 223, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(116, 244, 223, 0.28);
}

.drone-rotor::before,
.drone-rotor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 6px;
  background: linear-gradient(90deg, transparent 0 8%, rgba(234, 241, 245, 0.92) 8% 92%, transparent 92%);
  border-radius: 999px;
  content: "";
  filter: blur(0.7px);
}

.drone-rotor::before {
  animation: rotorSpin 220ms linear infinite;
}

.drone-rotor::after {
  animation: rotorSpinCross 220ms linear infinite;
}

.rotor-a {
  top: 0;
  left: 0;
}

.rotor-b {
  top: 0;
  right: 0;
}

.rotor-c {
  right: 0;
  bottom: 0;
}

.rotor-d {
  bottom: 0;
  left: 0;
}

.operator-zone,
.risk-zone {
  position: absolute;
  padding: 9px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.operator-zone {
  left: 10%;
  bottom: 11%;
  background: rgba(16, 166, 160, 0.22);
}

.risk-zone {
  right: 10%;
  top: 14%;
  background: rgba(232, 93, 72, 0.26);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 230px);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(116, 244, 223, 0.42);
  transform: translateY(-2px);
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 32, 0.16);
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 12px;
  line-height: 1.45;
  resize: vertical;
}

@keyframes missionBackdrop {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 46px 0, 0 46px, 0 0;
  }
}

@keyframes stageSweep {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.88;
    transform: scale(1);
  }
}

@keyframes sceneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sectorPlanetFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.015);
  }
}

@keyframes sectorEarthBand {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-32%);
  }
}

@keyframes sectorRocketFlight {
  0%,
  14% {
    opacity: 1;
    transform: translate(0, 0) rotate(2deg) scale(1);
  }
  45% {
    opacity: 1;
    transform: translate(64px, -58px) rotate(33deg) scale(0.96);
  }
  72% {
    opacity: 1;
    transform: translate(168px, -95px) rotate(54deg) scale(0.82);
  }
  84% {
    opacity: 0;
    transform: translate(205px, -110px) rotate(58deg) scale(0.72);
  }
  85%,
  100% {
    opacity: 0;
    transform: translate(0, 0) rotate(2deg) scale(1);
  }
}

@keyframes sectorRocketExhaust {
  0%,
  14% {
    opacity: 0.96;
    transform: translate(0, 0) rotate(2deg) scaleY(1);
  }
  45% {
    opacity: 0.8;
    transform: translate(64px, -58px) rotate(33deg) scaleY(0.78);
  }
  72% {
    opacity: 0.5;
    transform: translate(168px, -95px) rotate(54deg) scaleY(0.52);
  }
  84%,
  100% {
    opacity: 0;
    transform: translate(205px, -110px) rotate(58deg) scaleY(0.36);
  }
}

@keyframes missionPlanetFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

@keyframes roverTraverse {
  0%,
  8% {
    opacity: 1;
    transform: translate(-32px, 0) rotate(-1deg);
  }

  44%,
  58% {
    opacity: 1;
    transform: translate(265px, -8px) rotate(1deg);
  }

  66% {
    opacity: 0;
    transform: translate(342px, -4px) rotate(1deg);
  }

  67%,
  78% {
    opacity: 0;
    transform: translate(-92px, 0) rotate(-1deg);
  }

  88%,
  100% {
    opacity: 1;
    transform: translate(-32px, 0) rotate(-1deg);
  }
}

@keyframes roverBodyBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  28% {
    transform: translateY(-3px) rotate(-1deg);
  }

  56% {
    transform: translateY(2px) rotate(1deg);
  }
}

@keyframes roverShadow {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(1);
  }

  44%,
  58% {
    opacity: 0.42;
    transform: scaleX(0.86);
  }
}

@keyframes roverWheelSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1080deg);
  }
}

@keyframes roverMastScan {
  0%,
  100% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(8deg);
  }
}

@keyframes roverSignal {
  0% {
    opacity: 0;
    transform: rotate(-28deg) scale(0.64);
  }

  38% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: rotate(-28deg) scale(1.18);
  }
}

@keyframes roverArmSample {
  0%,
  100% {
    transform: rotate(28deg);
  }

  46%,
  64% {
    transform: rotate(49deg);
  }
}

@keyframes roverDust {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.7);
  }

  38%,
  58% {
    opacity: 0.62;
    transform: translate(-18px, -2px) scale(1.2);
  }

  70% {
    opacity: 0;
    transform: translate(-42px, -5px) scale(1.55);
  }
}
@keyframes sectorRunnerFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-1deg) scale(1);
  }

  45% {
    transform: translateX(-50%) translateY(-9px) rotate(1.4deg) scale(1.015);
  }

  72% {
    transform: translateX(-50%) translateY(-4px) rotate(-0.6deg) scale(1.006);
  }
}

@keyframes sectorRunnerShadow {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(1);
  }

  45% {
    opacity: 0.38;
    transform: scaleX(0.82);
  }

  72% {
    opacity: 0.52;
    transform: scaleX(0.92);
  }
}
@keyframes sectorMoonHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes sectorOrbitPulse {
  0%,
  100% {
    opacity: 0.32;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes sectorSatelliteDrift {
  from {
    transform: translateX(-32px) rotate(18deg);
  }
  to {
    transform: translateX(250px) rotate(18deg);
  }
}

@keyframes orbitRoll {
  to {
    transform: rotate(360deg);
  }
}


@keyframes sectorAstronautImageFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(-8deg);
  }

  50% {
    transform: translate(10px, -12px) rotate(4deg);
  }
}
@keyframes sectorAstronautFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(-16deg);
  }
  50% {
    transform: translate(8px, -9px) rotate(-9deg);
  }
}

@keyframes sectorDroneFlight {
  0%,
  12% {
    transform: translate(0, 0) rotate(-10deg);
  }
  42%,
  52% {
    transform: translate(98px, 10px) rotate(18deg);
  }
  78%,
  88% {
    transform: translate(188px, -34px) rotate(8deg);
  }
  100% {
    transform: translate(0, 0) rotate(-10deg);
  }
}

@keyframes sectorRotorSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes sectorScanCone {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(-8deg) scaleX(0.8);
  }
  50% {
    opacity: 0.76;
    transform: rotate(7deg) scaleX(1);
  }
}

@keyframes sectorRunHead {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, -5px);
  }
}

@keyframes sectorRunTorso {
  0%,
  100% {
    transform: rotate(-20deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-4px);
  }
}

@keyframes sectorRunArmA {
  0%,
  100% {
    transform: rotate(126deg);
  }
  50% {
    transform: rotate(54deg);
  }
}

@keyframes sectorRunArmB {
  0%,
  100% {
    transform: rotate(-34deg);
  }
  50% {
    transform: rotate(34deg);
  }
}

@keyframes sectorRunLegLead {
  0%,
  100% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-42deg);
  }
}

@keyframes sectorRunLegTrail {
  0%,
  100% {
    transform: rotate(138deg);
  }
  50% {
    transform: rotate(68deg);
  }
}

@keyframes sectorRunTrail {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(0) scaleX(0.8);
  }
  50% {
    opacity: 0.85;
    transform: translateX(18px) scaleX(1.04);
  }
}

@keyframes sectorRunForce {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.42);
  }
  35%,
  55% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes sectorRunFoot {
  0%,
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(9deg);
  }
  50% {
    opacity: 0.82;
    transform: translate(82px, -14px) rotate(-14deg);
  }
}

@keyframes sectorClinicHead {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2px, -3px);
  }
}

@keyframes sectorClinicTorso {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-2px);
  }
}

@keyframes sectorClinicArmA {
  0%,
  100% {
    transform: rotate(118deg);
  }
  50% {
    transform: rotate(68deg);
  }
}

@keyframes sectorClinicArmB {
  0%,
  100% {
    transform: rotate(-24deg);
  }
  50% {
    transform: rotate(28deg);
  }
}

@keyframes sectorClinicLegA {
  0%,
  100% {
    transform: rotate(64deg);
  }
  50% {
    transform: rotate(112deg);
  }
}

@keyframes sectorClinicLegB {
  0%,
  100% {
    transform: rotate(125deg);
  }
  50% {
    transform: rotate(42deg);
  }
}

@keyframes sectorClinicTrace {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(42px);
  }
}

@keyframes sectorClinicCurve {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(7px) scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes sectorClinicForce {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleY(0.52);
  }
  45%,
  62% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes droneHeroRoute {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  38% {
    transform: translate(94px, 0) rotate(16deg);
  }
  68% {
    transform: translate(94px, 60px) rotate(82deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


@keyframes launchSpaceDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 42px 0, 0 42px, 0 0;
  }
}

@keyframes heroAstronautFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(-9deg);
  }

  45% {
    transform: translate(12px, -18px) rotate(5deg);
  }

  70% {
    transform: translate(-8px, -8px) rotate(-2deg);
  }
}
@keyframes issOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes issCounterOrbit {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

@keyframes earthRotate {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-34%);
  }
}

@keyframes cloudDrift {
  from {
    transform: translateX(-32%);
  }
  to {
    transform: translateX(112%);
  }
}

@keyframes moonHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes marsHover {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(7px) rotate(2deg);
  }
}

@keyframes rocketLaunch {
  0%,
  6% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  18% {
    opacity: 1;
    transform: translate(0, -124px) rotate(0deg) scale(0.98);
  }

  36% {
    opacity: 1;
    transform: translate(0, -252px) rotate(0deg) scale(0.9);
  }

  54% {
    opacity: 0.96;
    transform: translate(0, -378px) rotate(0deg) scale(0.78);
  }

  64% {
    opacity: 0;
    transform: translate(0, -448px) rotate(0deg) scale(0.68);
  }

  65%,
  92% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@keyframes flamePulse {
  0%,
  100% {
    height: 36px;
    opacity: 0.78;
  }
  50% {
    height: 48px;
    opacity: 1;
  }
}

@keyframes plumePulse {
  0%,
  64%,
  100% {
    opacity: 0.08;
    transform: scale(0.72);
  }

  8%,
  26% {
    opacity: 1;
    transform: scale(1.18);
  }

  48% {
    opacity: 0.24;
    transform: scale(0.94);
  }
}
@keyframes trajectoryPulse {
  0%,
  100% {
    opacity: 0.38;
  }
  36% {
    opacity: 0.92;
  }
  64% {
    opacity: 0.18;
  }
}

@keyframes orbitSweep {
  to {
    transform: rotate(343deg);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pipelineLean {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

@keyframes segmentSwing {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 rgba(116, 244, 223, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(116, 244, 223, 0.44);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.68;
    box-shadow: 0 0 0 rgba(245, 165, 36, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(245, 165, 36, 0.72);
  }
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(58px);
  }
}

@keyframes yogaBalance {
  0%,
  100% {
    transform: translateX(-2px) rotate(-2deg);
  }
  50% {
    transform: translateX(3px) rotate(2deg);
  }
}

@keyframes yogaPoseFlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 rgba(116, 244, 223, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(116, 244, 223, 0.36);
  }
}

@keyframes imuTilt {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes imuWave {
  0% {
    opacity: 0.1;
    transform: scale(0.76) rotate(38deg);
  }
  45% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: scale(1.12) rotate(38deg);
  }
}

@keyframes forceVector {
  0%,
  100% {
    transform: scaleY(0.62);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes forceTip {
  0%,
  100% {
    transform: translate(-50%, 16px) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

@keyframes graphBar {
  0%,
  100% {
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
}

@keyframes anthropometricSpan {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 rgba(116, 244, 223, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(116, 244, 223, 0.38);
  }
}

@keyframes measureTick {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes dronePath {
  0%,
  10% {
    transform: translate(0, 0) rotate(-18deg) scale(0.98);
  }
  42%,
  52% {
    transform: translate(235px, -104px) rotate(19deg) scale(1.03);
  }
  78%,
  88% {
    transform: translate(430px, 24px) rotate(11deg) scale(0.98);
  }
  100% {
    transform: translate(0, 0) rotate(-18deg) scale(0.98);
  }
}

@keyframes droneHover {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(1.5deg);
  }
}

@keyframes droneShadow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.94);
  }
  42%,
  52% {
    opacity: 0.22;
    transform: scale(0.68);
  }
  78%,
  88% {
    opacity: 0.34;
    transform: scale(0.8);
  }
}

@keyframes droneDownwash {
  0%,
  100% {
    opacity: 0.24;
    transform: translateX(-50%) scale(0.75);
  }
  42%,
  52% {
    opacity: 0.52;
    transform: translateX(-50%) scale(1.06);
  }
  78%,
  88% {
    opacity: 0.42;
    transform: translateX(-50%) scale(0.92);
  }
}

@keyframes rotorSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotorSpinCross {
  from {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(450deg);
  }
}

@keyframes droneCardRoute {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  36% {
    transform: translate(74px, 0) rotate(16deg);
  }
  64% {
    transform: translate(74px, 44px) rotate(82deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


.sector-visual-stick {
  background:
    radial-gradient(circle at 58% 38%, rgba(116, 244, 223, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(248, 251, 253, 0.98), rgba(233, 239, 246, 0.92));
  border-color: rgba(116, 244, 223, 0.22);
  box-shadow:
    inset 0 0 38px rgba(116, 244, 223, 0.08),
    0 10px 26px rgba(15, 23, 32, 0.12);
}

.sector-visual-stick::before {
  inset: 12px;
  border-color: rgba(116, 244, 223, 0.18);
}

.sector-visual-stick::after {
  display: none;
}

.stick-svg {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.stick-guides path {
  fill: none;
  stroke: rgba(116, 244, 223, 0.26);
  stroke-width: 1.2;
}

.stick-ground {
  fill: none;
  stroke: #232b34;
  stroke-linecap: round;
  stroke-width: 2.6;
}

.stick-baseline {
  fill: none;
  stroke: rgba(245, 165, 36, 0.78);
  stroke-linecap: round;
  stroke-width: 3;
}

.stick-human {
  transform-box: fill-box;
  transform-origin: 48% 58%;
}

.stick-human-run {
  animation: stickRunBody 1280ms ease-in-out infinite;
}

.stick-human-clinic {
  animation: stickClinicBody 1900ms ease-in-out infinite;
}

.stick-head {
  fill: #f3cfbf;
  stroke: #232b34;
  stroke-width: 2.2;
  filter: drop-shadow(0 4px 6px rgba(15, 23, 32, 0.18));
}

.stick-neck {
  fill: none;
  stroke: #232b34;
  stroke-linecap: round;
  stroke-width: 5;
}

.stick-camera {
  fill: #1e2630;
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 1.1;
  filter: drop-shadow(0 4px 7px rgba(15, 23, 32, 0.22));
}

.stick-camera-dot {
  fill: #8ed5ff;
  filter: drop-shadow(0 0 8px rgba(75, 159, 255, 0.78));
}

.stick-segment {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stick-trunk {
  stroke: #1d2731;
  stroke-width: 9;
  filter: drop-shadow(0 5px 8px rgba(15, 23, 32, 0.28));
}

.stick-blue {
  stroke: #2475d6;
  stroke-width: 7.4;
  filter: drop-shadow(0 0 7px rgba(36, 117, 214, 0.52));
}

.stick-red {
  stroke: #ff474e;
  stroke-width: 7.4;
  filter: drop-shadow(0 0 7px rgba(255, 71, 78, 0.42));
}

.stick-arm-back {
  stroke-width: 5.4;
  opacity: 0.95;
  animation: stickBlueArm 1280ms ease-in-out infinite;
}

.stick-arm-front {
  stroke-width: 5.4;
  opacity: 0.95;
  animation: stickRedArm 1280ms ease-in-out infinite;
}

.stick-thigh-front,
.stick-shank-front {
  animation: stickRedLeg 1280ms ease-in-out infinite;
}

.stick-thigh-back,
.stick-shank-back {
  animation: stickBlueLeg 1280ms ease-in-out infinite;
}

.stick-foot-front,
.stick-foot-back {
  stroke-width: 6.4;
}

.stick-joints circle {
  fill: #ffffff;
  stroke: #2475d6;
  stroke-width: 3.2;
  filter: drop-shadow(0 0 7px rgba(36, 117, 214, 0.76));
  animation: stickMarkerPulse 1300ms ease-in-out infinite;
}

.stick-joints circle:nth-child(3),
.stick-joints circle:nth-child(5),
.stick-joints circle:nth-child(7) {
  stroke: #ff474e;
  filter: drop-shadow(0 0 7px rgba(255, 71, 78, 0.68));
}

.stick-knee-arc {
  fill: none;
  stroke: #ff474e;
  stroke-linecap: round;
  stroke-width: 2.4;
  animation: stickArcPulse 1500ms ease-in-out infinite;
}

.stick-kf-label {
  fill: #ff474e;
  font: 800 13px Inter, ui-sans-serif, system-ui, sans-serif;
}

.stick-force,
.stick-force-head {
  fill: none;
  stroke: #f5a524;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
  filter: drop-shadow(0 0 8px rgba(245, 165, 36, 0.48));
  animation: stickForcePulse 1280ms ease-in-out infinite;
}

.stick-graph {
  opacity: 0;
}

.stick-graph.is-visible {
  opacity: 1;
}

.stick-graph path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3.4;
}

.stick-graph path:first-child {
  stroke: rgba(116, 244, 223, 0.82);
  animation: stickGraphPulse 1900ms ease-in-out infinite;
}

.stick-graph path:nth-child(2) {
  stroke: rgba(245, 165, 36, 0.7);
}

.stick-graph path:nth-child(3) {
  stroke: rgba(255, 71, 78, 0.74);
}

.sector-visual-health .stick-arm-front,
.sector-visual-health .stick-arm-back,
.sector-visual-health .stick-thigh-front,
.sector-visual-health .stick-shank-front,
.sector-visual-health .stick-thigh-back,
.sector-visual-health .stick-shank-back {
  animation-duration: 1900ms;
}

.sector-visual-health .stick-force,
.sector-visual-health .stick-force-head {
  animation-duration: 1900ms;
}

@keyframes stickRunBody {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(-1.5deg);
  }
}

@keyframes stickClinicBody {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-0.8deg);
  }
}

@keyframes stickBlueArm {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-3px, 2px);
  }
}

@keyframes stickRedArm {
  0%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.84;
    transform: translate(3px, -2px);
  }
}

@keyframes stickBlueLeg {
  0%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.86;
    transform: translate(3px, -1px);
  }
}

@keyframes stickRedLeg {
  0%,
  100% {
    opacity: 0.94;
    transform: translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-3px, 2px);
  }
}

@keyframes stickMarkerPulse {
  0%,
  100% {
    r: 4.5px;
  }
  50% {
    r: 5.8px;
  }
}

@keyframes stickArcPulse {
  0%,
  100% {
    opacity: 0.45;
    stroke-dasharray: 38 18;
  }
  50% {
    opacity: 1;
    stroke-dasharray: 54 10;
  }
}

@keyframes stickForcePulse {
  0%,
  100% {
    opacity: 0.42;
    stroke-width: 3.2;
  }
  45%,
  62% {
    opacity: 1;
    stroke-width: 4.8;
  }
}

@keyframes stickGraphPulse {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1180px) {

  .launch-stage {
    --rocket-right: clamp(104px, 17vw, 178px);
    --launch-bottom: clamp(198px, 28vw, 300px);
    right: -4vw;
    width: min(70vw, 760px);
    opacity: 0.9;
  }

  .pipeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 32, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 32, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 4px;
  }

  .section-grid,
  .section-grid-reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .space-biomechanics-layout {
    grid-template-columns: 1fr;
  }

  .lunar-rover-scene,
  .visual-lab,
  .drone-map {
    min-height: 520px;
  }


  .launch-stage {
    --rocket-right: clamp(100px, 23vw, 180px);
    --launch-bottom: clamp(192px, 32vw, 292px);
    top: 55%;
    right: -24vw;
    width: 98vw;
    height: 520px;
    min-height: 0;
    opacity: 0.58;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 11, 19, 0.98) 0%, rgba(6, 11, 19, 0.88) 68%, rgba(6, 11, 19, 0.62) 100%),
      linear-gradient(180deg, rgba(8, 13, 20, 0) 64%, rgba(8, 13, 20, 0.96));
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 91vh;
    padding-top: 104px;
  }


  .launch-stage {
    --earth-size: 240px;
    --rocket-right: 104px;
    --launch-bottom: 195px;
    top: 47%;
    right: -62vw;
    width: 138vw;
    height: 430px;
    opacity: 0.34;
  }

  .earth {
    width: 240px;
  }

  .rocket {
    width: 28px;
    height: 78px;
  }


  .hero-content {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 320px);
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .telemetry-panel {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .pipeline-track,
  .sector-grid,
  .mission-panels {
    grid-template-columns: 1fr;
  }

  .pipeline-card,
  .sector-card {
    min-height: auto;
  }

  .lunar-rover-scene,
  .visual-lab,
  .visual-lab canvas,
  .drone-map {
    min-height: 500px;
  }

  .mission-telemetry {
    right: 14px;
    bottom: 14px;
    min-width: 124px;
  }

  .signal-readout {
    left: 14px;
    right: auto;
    min-width: 132px;
  }

  .signal-readout-alt {
    left: auto;
    right: 14px;
  }

  @keyframes dronePath {
    0%,
    10% {
      transform: translate(0, 0) rotate(-18deg) scale(0.92);
    }
    42%,
    52% {
      transform: translate(42vw, -74px) rotate(19deg) scale(0.98);
    }
    78%,
    88% {
      transform: translate(58vw, 18px) rotate(11deg) scale(0.92);
    }
    100% {
      transform: translate(0, 0) rotate(-18deg) scale(0.92);
    }
  }
}

@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;
  }
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

.contact-details {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-methods {
  width: 100%;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #333;
}

.contact-methods i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  font-size: 20px;
}

.contact-methods:nth-child(1) i {
  color: #007bff;
}

.contact-methods:nth-child(2) i {
  color: #28a745;
}

.contact-methods:nth-child(3) i {
  color: #dc3545;
}

.contact-methods:nth-child(4) i {
  color: #ff5722;
}

.contact-methods span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #aaa;
}

.contact-methods strong {
  display: block;
  font-size: 16px;
  color: white;
}
.map-container {
  width: 60%;
  height: 350px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Address Card */
.map-address {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.map-address > i {
  font-size: 22px;
  color: #dc3545;
  margin-top: 3px;
}

.map-address strong {
  color: #222;
  font-size: 16px;
}

.map-address p {
  margin: 5px 0 8px;
  color: #000000;
  font-size: 13px;
  line-height: 1.5;
}

.map-address a {
  color: #007bff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.map-address a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .contact-details,
  .map-container {
    width: 100%;
  }

  .map-container {
    min-height: 300px;
  }

  .map-container iframe {
    min-height: 300px;
  }
}