:root {
  --black: #000000;
  --space: #020403;
  --space-2: #06100a;
  --space-3: #0b1810;
  --green: #16c95f;
  --green-2: #00ff88;
  --green-3: #8dffc5;
  --white: #ffffff;
  --text: #eefbf3;
  --muted: #a9b9ae;
  --muted-2: #738176;
  --border: rgba(255, 255, 255, 0.12);
  --border-green: rgba(0, 255, 136, 0.28);
  --glass: rgba(255, 255, 255, 0.065);
  --glass-2: rgba(0, 255, 136, 0.06);
  --shadow: 0 26px 85px rgba(0, 0, 0, 0.42);
  --glow: 0 0 42px rgba(0, 255, 136, 0.28);
  --container: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 250px;
  height: 250px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16), rgba(0, 255, 136, 0.06) 34%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity .28s ease;
}

.space-background {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 255, 136, 0.16), transparent 28%),
    radial-gradient(circle at 75% 12%, rgba(255, 255, 255, 0.075), transparent 23%),
    radial-gradient(circle at 50% 88%, rgba(22, 201, 95, 0.11), transparent 35%),
    linear-gradient(180deg, #010201 0%, #031007 48%, #000 100%);
}

.star-layer,
.star-layer::before,
.star-layer::after {
  position: absolute;
  inset: -40%;
  content: "";
  background-repeat: repeat;
  will-change: transform;
}

.star-layer-one {
  opacity: .75;
  background-image:
    radial-gradient(#fff 0.7px, transparent 1px),
    radial-gradient(rgba(0, 255, 136, .95) 0.8px, transparent 1.2px);
  background-size: 84px 84px, 132px 132px;
  animation: starDrift 54s linear infinite;
}

.star-layer-two {
  opacity: .42;
  background-image:
    radial-gradient(rgba(255,255,255,.9) 0.7px, transparent 1.1px),
    radial-gradient(rgba(0,255,136,.7) 0.5px, transparent 1px);
  background-size: 160px 160px, 230px 230px;
  animation: starDrift 78s linear infinite reverse;
}

.star-layer-three {
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1.6px);
  background-size: 300px 300px;
  animation: starPulse 9s ease-in-out infinite alternate;
}

.cosmic-dust {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(0, 255, 136, .24) 49%, transparent 50% 100%),
    linear-gradient(75deg, transparent 0 52%, rgba(255,255,255,.18) 53%, transparent 54% 100%);
  background-size: 440px 440px, 620px 620px;
  animation: dustMove 36s linear infinite;
}

.nebula {
  position: absolute;
  width: 44rem;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(92px);
  opacity: .18;
  animation: nebulaFloat 13s ease-in-out infinite alternate;
}

.nebula-left {
  left: -18rem;
  top: 7rem;
  background: var(--green);
}

.nebula-right {
  right: -18rem;
  top: 16rem;
  animation-delay: -4s;
  background: var(--green-2);
}

.nebula-bottom {
  left: 38%;
  bottom: -22rem;
  animation-delay: -7s;
  opacity: .12;
  background: #ffffff;
}

.deep-grid {
  position: absolute;
  inset: auto 0 -9rem;
  height: 58vh;
  opacity: .17;
  background-image:
    linear-gradient(rgba(0, 255, 136, .34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .34) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(820px) rotateX(64deg) translateY(5rem);
  transform-origin: bottom;
  animation: gridMove 5.5s linear infinite;
}

.shooting-star {
  position: absolute;
  top: 18%;
  left: 90%;
  width: 150px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.94), var(--green-2));
  box-shadow: 0 0 18px rgba(0, 255, 136, .65);
  opacity: 0;
  transform: rotate(-28deg);
  animation: shooting 8s linear infinite;
}

.shooting-star-two {
  top: 48%;
  animation-delay: 3.2s;
  animation-duration: 10s;
}

.shooting-star-three {
  top: 72%;
  width: 100px;
  animation-delay: 6.2s;
  animation-duration: 11s;
}

.floating-space-objects {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.space-planet,
.tiny-satellite {
  position: absolute;
  border-radius: 999px;
  opacity: .62;
  filter: drop-shadow(0 0 22px rgba(0, 255, 136, .18));
}

.planet-alpha {
  width: 96px;
  height: 96px;
  right: 8vw;
  top: 18vh;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.92), transparent 0 9%, transparent 14%),
    radial-gradient(circle at 35% 30%, #9dffc8, #16c95f 35%, #06280f 70%);
  animation: planetFloat 9s ease-in-out infinite alternate;
}

.planet-alpha::after {
  position: absolute;
  inset: 43% -20%;
  content: "";
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.planet-beta {
  width: 52px;
  height: 52px;
  left: 8vw;
  top: 64vh;
  opacity: .45;
  background: radial-gradient(circle at 30% 25%, #fff, #93ffc0 18%, #0b5b2d 58%, #021006 100%);
  animation: planetFloat 12s ease-in-out infinite alternate-reverse;
}

.planet-gamma {
  width: 34px;
  height: 34px;
  right: 18vw;
  bottom: 9vh;
  opacity: .52;
  background: radial-gradient(circle at 30% 25%, #fff, #00ff88 22%, #052a13 78%);
  animation: smallOrbit 10s ease-in-out infinite;
}

.tiny-satellite {
  width: 40px;
  height: 14px;
  border: 1px solid rgba(0, 255, 136, .35);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  transform: rotate(32deg);
}

.tiny-satellite::before,
.tiny-satellite::after {
  position: absolute;
  top: 2px;
  width: 12px;
  height: 10px;
  content: "";
  border: 1px solid rgba(0,255,136,.35);
  background: rgba(0,255,136,.1);
}

.tiny-satellite::before { left: -16px; }
.tiny-satellite::after { right: -16px; }

.satellite-one {
  left: 16vw;
  top: 22vh;
  animation: satelliteDrift 15s ease-in-out infinite alternate;
}

.satellite-two {
  right: 12vw;
  top: 58vh;
  transform: rotate(-18deg);
  animation: satelliteDrift 17s ease-in-out infinite alternate-reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 4, 3, .68);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.55), transparent);
  opacity: .65;
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: clamp(158px, 17vw, 236px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 255, 136, .2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-links a::after {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(0,255,136,.8);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(0, 255, 136, .1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 42%;
}

.nav-links .nav-cta {
  color: #061009;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 12px 34px rgba(0, 255, 136, .22);
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  color: #020403;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #85ffc1, var(--green-2));
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: .25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero-orbital-lines {
  position: absolute;
  inset: 4% auto auto 50%;
  width: min(92vw, 1000px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .16;
  border: 1px solid rgba(0,255,136,.32);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-20deg);
  animation: slowSpin 38s linear infinite;
}

.hero-orbital-lines::before,
.hero-orbital-lines::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.hero-orbital-lines::after {
  inset: 26%;
  border-color: rgba(0,255,136,.36);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 24px var(--green-2);
  animation: pulseDot 1.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -.048em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.6vw, 6.55rem);
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.55rem);
}

.gradient-text,
h2 span {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-3) 18%, var(--green-2) 55%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 26px rgba(0,255,136,.36));
}

.hero-content p,
.section-header p,
.mission-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.76;
}

.hero-content p {
  max-width: 675px;
  margin-top: 24px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  overflow: hidden;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s var(--ease), box-shadow .25s ease, border .25s ease, background .25s ease;
}

.btn::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-80%);
  transition: opacity .25s ease;
}

.btn:hover::before {
  opacity: 1;
  animation: btnShine .75s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #021006;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 18px 50px rgba(0, 255, 136, .24), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover {
  box-shadow: 0 22px 65px rgba(0, 255, 136, .34);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--border-green);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.btn-secondary:hover {
  background: rgba(0,255,136,.08);
  border-color: rgba(0,255,136,.48);
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
}

.mission-console {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 38px;
}

.mission-console article {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.mission-console article::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .5;
  background: linear-gradient(120deg, transparent, rgba(0,255,136,.18), transparent);
  transform: translateX(-100%);
  animation: consoleSweep 4.8s ease-in-out infinite;
}

.mission-console article:nth-child(2)::before { animation-delay: 1s; }
.mission-console article:nth-child(3)::before { animation-delay: 2s; }

.mission-console strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--green-2);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(0,255,136,.42);
}

.mission-console span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.hero-visual {
  min-height: 620px;
  transform-style: preserve-3d;
}

.space-stage {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform-style: preserve-3d;
}

.scan-ring,
.orbit-path {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, .28);
  transform: rotateX(62deg) rotateZ(0deg);
  box-shadow: 0 0 26px rgba(0,255,136,.12), inset 0 0 22px rgba(0,255,136,.08);
}

.scan-ring-one {
  inset: 3%;
  animation: slowSpin 28s linear infinite;
}

.scan-ring-two {
  inset: 17%;
  border-color: rgba(255,255,255,.2);
  animation: slowSpin 18s linear infinite reverse;
}

.scan-ring-three {
  inset: 29%;
  border-color: rgba(0,255,136,.38);
  animation: slowSpin 12s linear infinite;
}

.orbit-path {
  border-style: dashed;
  opacity: .75;
}

.orbit-path-one {
  inset: 8%;
  animation: rotateOrbit 10s linear infinite;
}

.orbit-path-two {
  inset: 20%;
  animation: rotateOrbit 16s linear infinite reverse;
}

.orbit-path-three {
  inset: 34%;
  animation: rotateOrbit 7.8s linear infinite;
}

.orbiting-dot,
.orbiting-planet {
  position: absolute;
  left: 50%;
  top: -7px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.dot-green {
  width: 14px;
  height: 14px;
  background: var(--green-2);
  box-shadow: 0 0 22px rgba(0,255,136,.95);
}

.dot-white {
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.8);
}

.mini-planet {
  width: 26px;
  height: 26px;
  top: -13px;
  background: radial-gradient(circle at 30% 28%, #fff, #8dffc5 25%, #16c95f 56%, #041407 100%);
  box-shadow: 0 0 26px rgba(0,255,136,.4);
}

.rocket-orbit {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  animation: rotateOrbit 12s linear infinite;
  transform: rotateX(61deg);
  pointer-events: none;
}

.rocket-wrapper {
  position: absolute;
  left: 50%;
  top: -14px;
  width: 92px;
  height: 92px;
  transform: translateX(-50%) rotate(42deg);
  filter: drop-shadow(0 0 18px rgba(0,255,136,.55));
}

.rocket-asset {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rocketWobble 1.8s ease-in-out infinite alternate;
}

.rocket-flame {
  position: absolute;
  left: 15px;
  bottom: 11px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  opacity: .9;
  background: radial-gradient(circle at 35% 35%, #fff, #adffd0 25%, var(--green-2) 50%, transparent 72%);
  filter: blur(.5px) drop-shadow(0 0 18px rgba(0,255,136,.75));
  transform: rotate(45deg) scale(.85);
  animation: flamePulse .22s ease-in-out infinite alternate;
}

.central-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(56%, 310px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.72), transparent 0 10%, transparent 16%),
    radial-gradient(circle at 34% 35%, #0d311a, #06140b 52%, #010302 100%);
  box-shadow:
    0 0 90px rgba(0,255,136,.18),
    inset 0 0 44px rgba(0,255,136,.2),
    inset -20px -28px 38px rgba(0,0,0,.7);
  transform: translate(-50%, -50%);
  animation: planetBreath 4.2s ease-in-out infinite alternate;
}

.central-planet::before {
  position: absolute;
  inset: 16% -18%;
  content: "";
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.planet-atmosphere {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 56%, rgba(0,255,136,.18) 66%, transparent 72%);
  animation: slowSpin 12s linear infinite;
}

.planet-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(0,255,136,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,.35) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 50%;
  transform: rotate(12deg);
  animation: gridSlide 5s linear infinite;
}

.planet-core-light {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,.28), transparent 68%);
  filter: blur(16px);
  animation: pulseCore 2.6s ease-in-out infinite alternate;
}

.central-planet strong {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.92);
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  letter-spacing: -.08em;
  text-shadow: 0 0 36px rgba(0,255,136,.5);
}

.holo-card {
  position: absolute;
  z-index: 5;
  min-width: 144px;
  padding: 14px 16px;
  border: 1px solid rgba(0,255,136,.28);
  border-radius: 18px;
  background: rgba(2, 14, 7, .55);
  backdrop-filter: blur(15px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.holo-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .45;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255,255,255,.13), transparent 36%, rgba(0,255,136,.09));
}

.holo-card small,
.holo-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.holo-card small {
  color: var(--green-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.holo-card strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 1rem;
}

.holo-card-one {
  left: 2%;
  top: 21%;
}

.holo-card-two {
  right: 0;
  top: 44%;
  animation-delay: -1.2s;
}

.holo-card-three {
  left: 12%;
  bottom: 12%;
  animation-delay: -2.1s;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 800;
  transform: translateX(-50%);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

.scroll-indicator span {
  width: 18px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::before {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--green-2);
  transform: translateX(-50%);
  animation: mouseDot 1.4s ease-in-out infinite;
}

.section-header {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header p {
  margin-top: 18px;
}

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

.service-card,
.project-card,
.mission-step,
.contact-shell,
.tools-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}

.service-card {
  min-height: 342px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), border .28s ease, box-shadow .28s ease;
}

.service-card::before,
.project-card::before,
.mission-step::before,
.contact-shell::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,255,136,.2), transparent 36%);
  transition: opacity .25s ease;
}

.service-card:hover::before,
.project-card:hover::before,
.mission-step:hover::before,
.contact-shell:hover::before {
  opacity: 1;
}

.service-card:hover,
.project-card:hover,
.mission-step:hover {
  border-color: rgba(0,255,136,.36);
  box-shadow: 0 28px 90px rgba(0,0,0,.46), 0 0 42px rgba(0,255,136,.1), inset 0 1px 0 rgba(255,255,255,.12);
}

.card-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .08;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

.featured-card {
  border-color: rgba(0,255,136,.38);
  background: linear-gradient(180deg, rgba(0,255,136,.13), rgba(255,255,255,.035));
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
  border: 1px solid rgba(0,255,136,.26);
  border-radius: 20px;
  background: rgba(0,255,136,.08);
  font-size: 1.8rem;
  box-shadow: 0 16px 42px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.14);
}

.service-card h3,
.service-card p,
.service-card ul,
.project-content,
.mission-step > * {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 999px;
  color: var(--green-3);
  background: rgba(0,255,136,.055);
  font-size: .76rem;
  font-weight: 800;
}

.mission {
  overflow: hidden;
}

.mission::before {
  position: absolute;
  right: -16rem;
  top: 12%;
  width: 42rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(0,255,136,.14);
  border-radius: 50%;
  animation: slowSpin 32s linear infinite;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: start;
}

.mission-copy {
  position: sticky;
  top: 120px;
}

.mission-copy p {
  margin-top: 20px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--green-2);
  font-weight: 900;
}

.text-link::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--green-2), transparent);
  transform-origin: left;
  transition: transform .25s ease;
}

.text-link:hover::after {
  transform: scaleX(.55);
}

.mission-steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.mission-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  min-height: 150px;
  padding: 26px;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

.mission-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0,255,136,.34);
  border-radius: 18px;
  color: #041007;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  font-weight: 950;
  box-shadow: 0 14px 38px rgba(0,255,136,.18);
}

.mission-step p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.tools {
  padding: 40px 0;
  overflow: hidden;
}

.tools-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.tools-title .eyebrow {
  margin-bottom: 10px;
}

.tools-title h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -.035em;
}

.tools-marquee {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.tools-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.tools-track img {
  width: 86px;
  height: 64px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  filter: grayscale(.2) drop-shadow(0 0 14px rgba(0,255,136,.08));
}

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

.project-card {
  border-radius: var(--radius-xl);
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), border .28s ease, box-shadow .28s ease;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
  background: rgba(0,255,136,.08);
}

.project-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(0,0,0,.72)),
    radial-gradient(circle at 25% 18%, rgba(0,255,136,.22), transparent 26%);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .6s var(--ease), filter .45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.project-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(0,255,136,.34);
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
  font-size: .76rem;
  font-weight: 900;
}

.project-content {
  padding: 26px;
}

.project-content p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.project-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-2);
  font-weight: 900;
}

.disabled-link {
  color: var(--muted-2);
  cursor: not-allowed;
}

.contact {
  padding-bottom: 128px;
}

.contact-shell {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,255,136,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.028));
}

.contact-shell::after {
  position: absolute;
  inset: auto -10% -45% auto;
  z-index: -1;
  width: 440px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,.2), transparent 70%);
  filter: blur(20px);
}

.launch-ring {
  position: absolute;
  right: 8%;
  top: 50%;
  z-index: -1;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(0,255,136,.18);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: slowSpin 12s linear infinite;
}

.launch-ring-two {
  width: 310px;
  border-color: rgba(255,255,255,.12);
  animation-duration: 22s;
  animation-direction: reverse;
}

.contact-copy h2 {
  max-width: 800px;
}

.contact-copy p {
  max-width: 720px;
  margin-top: 18px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0,255,136,.4);
  border-radius: 50%;
  color: #031006;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 20px 56px rgba(0,255,136,.25);
  font-size: 1.35rem;
  font-weight: 950;
  animation: floatButton 2.6s ease-in-out infinite alternate;
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(0,255,136,.22);
  border-radius: inherit;
  animation: ping 1.8s ease-out infinite;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 108px;
  color: var(--muted);
}

.footer-content img {
  width: 158px;
  filter: drop-shadow(0 0 14px rgba(0,255,136,.16));
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.magnetic {
  will-change: transform;
}

@keyframes starDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-260px, 260px, 0); }
}

@keyframes starPulse {
  from { opacity: .11; transform: scale(1); }
  to { opacity: .28; transform: scale(1.05); }
}

@keyframes dustMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 440px 440px, -620px 620px; }
}

@keyframes nebulaFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(50px, -36px, 0) scale(1.08); }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 0 70px; }
}

@keyframes shooting {
  0%, 68% { opacity: 0; transform: translate3d(0,0,0) rotate(-28deg); }
  72% { opacity: 1; }
  82% { opacity: 0; transform: translate3d(-840px, 390px, 0) rotate(-28deg); }
  100% { opacity: 0; }
}

@keyframes planetFloat {
  from { transform: translate3d(0,0,0) rotate(-7deg); }
  to { transform: translate3d(20px,-28px,0) rotate(8deg); }
}

@keyframes smallOrbit {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(22px,-18px,0) scale(1.15); }
}

@keyframes satelliteDrift {
  from { translate: 0 0; }
  to { translate: 38px -22px; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes btnShine {
  from { transform: translateX(-90%); }
  to { transform: translateX(90%); }
}

@keyframes consoleSweep {
  0%, 30% { transform: translateX(-110%); }
  58%, 100% { transform: translateX(110%); }
}

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

.hero-orbital-lines { animation-name: heroSpin; }
@keyframes heroSpin {
  to { transform: translateX(-50%) rotate(340deg); }
}

.scan-ring-one,
.scan-ring-two,
.scan-ring-three {
  animation-name: scanSpin;
}

.planet-atmosphere,
.mission::before {
  animation-name: flatSpin;
}

.launch-ring {
  animation-name: launchSpin;
}

@keyframes scanSpin {
  to { transform: rotateX(62deg) rotateZ(360deg); }
}

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

@keyframes launchSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rotateOrbit {
  to { transform: rotateX(62deg) rotateZ(360deg); }
}

.rocket-orbit {
  animation-name: rocketOrbit;
}

@keyframes rocketOrbit {
  to { transform: rotateX(61deg) rotateZ(360deg); }
}

@keyframes rocketWobble {
  from { transform: translate3d(0,0,0) rotate(-3deg); }
  to { transform: translate3d(0,-4px,0) rotate(3deg); }
}

@keyframes flamePulse {
  from { transform: rotate(45deg) scale(.65); opacity: .72; }
  to { transform: rotate(45deg) scale(1.08); opacity: 1; }
}

@keyframes planetBreath {
  from { box-shadow: 0 0 70px rgba(0,255,136,.15), inset 0 0 40px rgba(0,255,136,.16), inset -20px -28px 38px rgba(0,0,0,.7); }
  to { box-shadow: 0 0 105px rgba(0,255,136,.28), inset 0 0 58px rgba(0,255,136,.24), inset -20px -28px 38px rgba(0,0,0,.7); }
}

@keyframes gridSlide {
  from { background-position: 0 0; }
  to { background-position: 34px 34px; }
}

@keyframes pulseCore {
  from { transform: scale(.86); opacity: .68; }
  to { transform: scale(1.15); opacity: 1; }
}

@keyframes floatCard {
  from { transform: translate3d(0,0,36px); }
  to { transform: translate3d(0,-16px,36px); }
}

@keyframes scrollBounce {
  0%, 100% { translate: -50% 0; }
  50% { translate: -50% -8px; }
}

@keyframes mouseDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes floatButton {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes ping {
  from { transform: scale(.82); opacity: .72; }
  to { transform: scale(1.42); opacity: 0; }
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .mission-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p,
  .mission-console {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .mission-copy {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 86px 0;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    z-index: 55;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(0,255,136,.2);
    border-radius: 24px;
    background: rgba(2, 9, 5, .94);
    box-shadow: 0 26px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px) scale(.98);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    min-height: 52px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: auto;
  }

  .space-stage {
    width: min(100%, 470px);
  }

  .holo-card {
    min-width: 125px;
    padding: 11px 12px;
  }

  .rocket-wrapper {
    width: 72px;
    height: 72px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .tools-shell {
    grid-template-columns: 1fr;
  }

  .tools-track img {
    width: 78px;
    height: 58px;
  }

  .mission-console {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 148px;
  }

  .space-stage {
    width: min(100%, 380px);
  }

  .holo-card {
    display: none;
  }

  .central-planet {
    width: 62%;
  }

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

  .contact-shell {
    border-radius: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

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

  .cursor-glow {
    display: none;
  }
}

.css-rocket {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: block;
  width: 34px;
  height: 76px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50% 50% 18px 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.62) 48%, rgba(0,255,136,.92) 49%, rgba(22,201,95,.82)),
    linear-gradient(180deg, #fff, #d9ffe9);
  box-shadow: 0 0 24px rgba(0,255,136,.45), inset 0 10px 16px rgba(255,255,255,.35);
  transform: translate(-50%, -50%);
  animation: rocketWobble 1.8s ease-in-out infinite alternate;
}

.rocket-nose {
  position: absolute;
  left: 50%;
  top: -15px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 100% 0 50% 0;
  background: linear-gradient(135deg, #ffffff, var(--green-2));
  transform: translateX(-50%) rotate(-45deg);
}

.rocket-window {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--green-2) 38%, #052613 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0,255,136,.55);
}

.rocket-fin {
  position: absolute;
  bottom: 3px;
  width: 20px;
  height: 27px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  border: 1px solid rgba(255,255,255,.62);
}

.rocket-fin-left {
  left: -15px;
  border-radius: 16px 0 8px 18px;
  transform: rotate(-19deg);
}

.rocket-fin-right {
  right: -15px;
  border-radius: 0 16px 18px 8px;
  transform: rotate(19deg);
}


/* ==========================================================
   Foguete 3D Rocket Tech — versão com profundidade, volume,
   luz neon, sombra e cauda de propulsão animada.
   ========================================================== */
.rocket-wrapper-3d {
  width: 122px;
  height: 122px;
  top: -34px;
  transform: translateX(-50%) rotate(0deg);
  transform-style: preserve-3d;
  perspective: 720px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, .62));
}

.rocket-wrapper-3d::before,
.rocket-wrapper-3d::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotateX(66deg);
}

.rocket-wrapper-3d::before {
  width: 122px;
  height: 122px;
  border: 1px dashed rgba(0, 255, 136, .26);
  box-shadow: 0 0 30px rgba(0, 255, 136, .12);
  animation: rocketMicroOrbit 5.8s linear infinite;
}

.rocket-wrapper-3d::after {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, .1);
  opacity: .65;
  animation: rocketMicroOrbit 4.2s linear infinite reverse;
}

.rocket-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 72px;
  height: 112px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateZ(42deg) rotateY(-24deg) rotateX(9deg);
  animation: rocket3dFloat 2.35s ease-in-out infinite alternate;
  will-change: transform;
}

.rocket-shadow-3d {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 84px;
  height: 19px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,136,.48), rgba(0,0,0,0) 68%);
  filter: blur(5px);
  transform: translateX(-50%) rotateX(74deg) translateZ(-34px);
  animation: rocketShadowPulse 2.35s ease-in-out infinite alternate;
}

.rocket-body-3d {
  position: absolute;
  left: 50%;
  top: 21px;
  width: 40px;
  height: 73px;
  border-radius: 26px 26px 15px 15px;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  background:
    linear-gradient(90deg, rgba(0,0,0,.32), transparent 22%, rgba(255,255,255,.88) 41%, rgba(255,255,255,.44) 55%, rgba(0,255,136,.9) 100%),
    linear-gradient(180deg, #f7fff9 0%, #d6ffe7 48%, #16c95f 100%);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    inset -13px 0 19px rgba(0, 0, 0, .24),
    inset 10px 0 16px rgba(255, 255, 255, .45),
    0 0 26px rgba(0, 255, 136, .42);
  overflow: hidden;
}

.rocket-body-front,
.rocket-body-side,
.rocket-body-highlight,
.rocket-stripe-3d,
.rocket-window-3d {
  position: absolute;
  pointer-events: none;
}

.rocket-body-front {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 29% 16%, rgba(255,255,255,.98) 0 8%, transparent 9%),
    linear-gradient(90deg, rgba(255,255,255,.42), transparent 38%, rgba(0,0,0,.16) 100%);
  mix-blend-mode: screen;
  opacity: .82;
}

.rocket-body-side-left,
.rocket-body-side-right {
  top: 8px;
  width: 12px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(0,255,136,.4));
  filter: blur(.25px);
  opacity: .68;
}

.rocket-body-side-left {
  left: -4px;
  transform: rotateY(70deg) translateZ(-4px);
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,255,136,.3));
}

.rocket-body-side-right {
  right: -4px;
  transform: rotateY(-70deg) translateZ(5px);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(0,255,136,.5));
}

.rocket-body-highlight {
  left: 9px;
  top: 8px;
  width: 7px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,0));
  opacity: .74;
  filter: blur(.45px);
}

.rocket-nose-3d {
  position: absolute;
  left: 50%;
  top: -2px;
  z-index: 4;
  width: 43px;
  height: 43px;
  border-radius: 50% 50% 44% 44%;
  transform: translateX(-50%) translateZ(16px) rotateX(8deg);
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at 30% 24%, #ffffff 0 13%, rgba(255,255,255,.72) 14% 25%, transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #dffff0 35%, var(--green-2) 72%, #078a43 100%);
  clip-path: polygon(50% 0%, 94% 96%, 6% 96%);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow:
    inset -10px -7px 15px rgba(0,0,0,.24),
    inset 8px 5px 13px rgba(255,255,255,.55),
    0 0 22px rgba(0,255,136,.48);
}

.rocket-nose-3d i {
  position: absolute;
  left: 50%;
  top: 21px;
  width: 31px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  transform: translateX(-50%) rotate(-7deg);
  filter: blur(.2px);
}

.rocket-window-3d {
  left: 50%;
  top: 17px;
  z-index: 5;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(18px);
  background:
    radial-gradient(circle at 34% 25%, #ffffff 0 13%, rgba(255,255,255,.72) 14% 22%, transparent 23%),
    radial-gradient(circle at 57% 62%, #00ff88 0 14%, #063d20 54%, #010503 100%);
  border: 3px solid rgba(255,255,255,.9);
  box-shadow:
    0 0 18px rgba(0,255,136,.78),
    inset 0 0 12px rgba(0,0,0,.72);
}

.rocket-window-3d i {
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(141,255,197,.7);
  animation: windowPulse3d 1.6s ease-in-out infinite alternate;
}

.rocket-stripe-3d {
  left: -3px;
  right: -3px;
  bottom: 18px;
  height: 10px;
  transform: translateZ(12px);
  background: linear-gradient(90deg, rgba(0,0,0,.18), var(--green-2), rgba(255,255,255,.5));
  box-shadow: 0 0 13px rgba(0,255,136,.64);
}

.rocket-booster-3d {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  width: 15px;
  height: 45px;
  border-radius: 999px 999px 8px 8px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42), rgba(255,255,255,.54), rgba(0,255,136,.76)),
    linear-gradient(180deg, #ecfff4, #16c95f);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: inset -7px 0 10px rgba(0,0,0,.26), 0 0 18px rgba(0,255,136,.36);
}

.booster-left-3d {
  left: 5px;
  transform: rotate(-8deg) translateZ(-6px);
}

.booster-right-3d {
  right: 5px;
  transform: rotate(8deg) translateZ(-1px);
}

.rocket-fin-3d {
  position: absolute;
  z-index: 0;
  bottom: 15px;
  width: 29px;
  height: 35px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(0,255,136,.72) 42%, #0b6a36 100%);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: inset -7px -8px 12px rgba(0,0,0,.22), 0 0 14px rgba(0,255,136,.32);
}

.rocket-fin-left-3d {
  left: -4px;
  border-radius: 22px 4px 12px 20px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 38% 22%);
  transform: rotate(-18deg) translateZ(-10px);
}

.rocket-fin-right-3d {
  right: -4px;
  border-radius: 4px 22px 20px 12px;
  clip-path: polygon(0 0, 62% 22%, 100% 100%, 0 100%);
  transform: rotate(18deg) translateZ(6px);
}

.rocket-flame-3d {
  left: 39px;
  bottom: 1px;
  z-index: 0;
  width: 46px;
  height: 62px;
  border-radius: 50% 50% 50% 0;
  background:
    radial-gradient(circle at 38% 35%, #ffffff 0 8%, #b9ffd7 9% 24%, var(--green-2) 25% 46%, rgba(0,255,136,.42) 60%, transparent 74%);
  filter: blur(.25px) drop-shadow(0 0 24px rgba(0,255,136,.95));
  transform: rotate(45deg) scale(.9) translateZ(-12px);
  animation: flamePulse3d .18s ease-in-out infinite alternate;
}

.rocket-trail {
  position: absolute;
  left: 5px;
  top: 70px;
  width: 74px;
  height: 11px;
  border-radius: 999px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.52), rgba(255,255,255,.74));
  filter: blur(2px);
  opacity: .56;
  animation: trailWave 1.2s ease-in-out infinite;
}

.trail-one { transform: rotate(41deg) translateX(-22px); }
.trail-two { transform: rotate(33deg) translateX(-39px) translateY(12px); animation-delay: -.34s; opacity: .34; }
.trail-three { transform: rotate(50deg) translateX(-45px) translateY(-11px); animation-delay: -.68s; opacity: .28; }

@keyframes rocket3dFloat {
  0% { transform: translate(-50%, -50%) rotateZ(38deg) rotateY(-28deg) rotateX(6deg) translate3d(0, 0, 0); }
  100% { transform: translate(-50%, -50%) rotateZ(46deg) rotateY(-14deg) rotateX(14deg) translate3d(2px, -9px, 16px); }
}

@keyframes rocketShadowPulse {
  from { opacity: .44; transform: translateX(-50%) rotateX(74deg) translateZ(-34px) scale(.86); }
  to { opacity: .76; transform: translateX(-50%) rotateX(74deg) translateZ(-34px) scale(1.18); }
}

@keyframes rocketMicroOrbit {
  to { transform: translate(-50%, -50%) rotateX(66deg) rotateZ(360deg); }
}

@keyframes flamePulse3d {
  0% { transform: rotate(45deg) scale(.76) translateZ(-12px); opacity: .72; }
  100% { transform: rotate(45deg) scale(1.14) translateZ(-12px); opacity: 1; }
}

@keyframes trailWave {
  0%, 100% { opacity: .18; filter: blur(2px); }
  48% { opacity: .66; filter: blur(3.5px); }
}

@keyframes windowPulse3d {
  from { opacity: .45; box-shadow: inset 0 0 4px rgba(0,255,136,.4); }
  to { opacity: 1; box-shadow: inset 0 0 10px rgba(0,255,136,.84), 0 0 10px rgba(0,255,136,.45); }
}

@media (max-width: 760px) {
  .rocket-wrapper-3d {
    width: 98px;
    height: 98px;
    top: -28px;
  }

  .rocket-3d {
    transform: translate(-50%, -50%) rotateZ(42deg) rotateY(-18deg) rotateX(8deg) scale(.82);
  }
}


/* ==========================================================
   Ajuste Rocket Tech: módulos orbitando o planeta RT
   - foguete removido do hero
   - linhas internas do planeta removidas
   - módulos em órbita contínua ao redor do planeta
   ========================================================== */
.rocket-orbit,
.rocket-orbit-main,
.rocket-wrapper,
.rocket-wrapper-3d {
  display: none !important;
}

.central-planet {
  z-index: 4;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.28), transparent 0 8%, transparent 15%),
    radial-gradient(circle at 50% 48%, rgba(0,255,136,.12), transparent 0 42%, transparent 66%),
    radial-gradient(circle at 34% 35%, #0b2414, #06120a 55%, #010302 100%);
}

.central-planet::before,
.planet-grid {
  display: none !important;
}

.central-planet::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 25%, rgba(255,255,255,.12), transparent 0 18%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 36%, rgba(0,0,0,.34) 70%);
  pointer-events: none;
}

.central-planet strong {
  z-index: 3;
}

.planet-atmosphere {
  opacity: .7;
  mix-blend-mode: screen;
}

.module-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, .22);
  box-shadow:
    0 0 26px rgba(0,255,136,.12),
    inset 0 0 28px rgba(0,255,136,.08);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-12deg);
  animation: orbitRingPulse 5.6s ease-in-out infinite alternate;
}

.module-orbit-ring-one {
  width: 91%;
  height: 62%;
  border-color: rgba(0,255,136,.24);
}

.module-orbit-ring-two {
  width: 78%;
  height: 52%;
  border-style: solid;
  border-color: rgba(255,255,255,.16);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(18deg);
  animation-delay: -1.8s;
}

.module-orbit-ring-three {
  width: 67%;
  height: 45%;
  border-color: rgba(0,255,136,.16);
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-34deg);
  animation-delay: -3s;
}

.holo-card {
  left: 50%;
  top: 50%;
  z-index: 6;
  min-width: 158px;
  transform-origin: center center;
  will-change: transform, filter, opacity;
  box-shadow:
    0 22px 55px rgba(0,0,0,.38),
    0 0 26px rgba(0,255,136,.18),
    inset 0 1px 0 rgba(255,255,255,.13);
}

.holo-card::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,136,.28), transparent 70%);
  filter: blur(8px);
  opacity: .75;
}

.holo-card-one {
  animation: orbitModuleOne 20s linear infinite;
}

.holo-card-two {
  animation: orbitModuleTwo 24s linear infinite;
}

.holo-card-three {
  animation: orbitModuleThree 28s linear infinite;
}

.holo-card small,
.holo-card strong {
  text-shadow: 0 0 18px rgba(0,255,136,.25);
}

@keyframes orbitRingPulse {
  from { opacity: .34; filter: blur(0); }
  to { opacity: .82; filter: blur(.15px); }
}

@keyframes orbitModuleOne {
  0% { transform: translate(-50%, -50%) rotate(220deg) translateX(265px) rotate(-220deg) scale(.98); opacity: 1; filter: blur(0); }
  24% { transform: translate(-50%, -50%) rotate(306deg) translateX(265px) rotate(-306deg) scale(1.02); opacity: 1; filter: blur(0); }
  50% { transform: translate(-50%, -50%) rotate(400deg) translateX(265px) rotate(-400deg) scale(.92); opacity: .72; filter: blur(.35px); }
  76% { transform: translate(-50%, -50%) rotate(493deg) translateX(265px) rotate(-493deg) scale(1.02); opacity: 1; filter: blur(0); }
  100% { transform: translate(-50%, -50%) rotate(580deg) translateX(265px) rotate(-580deg) scale(.98); opacity: 1; filter: blur(0); }
}

@keyframes orbitModuleTwo {
  0% { transform: translate(-50%, -50%) rotate(6deg) translateX(273px) rotate(-6deg) scale(1.02); opacity: 1; filter: blur(0); }
  28% { transform: translate(-50%, -50%) rotate(107deg) translateX(273px) rotate(-107deg) scale(.94); opacity: .78; filter: blur(.28px); }
  54% { transform: translate(-50%, -50%) rotate(200deg) translateX(273px) rotate(-200deg) scale(1.03); opacity: 1; filter: blur(0); }
  78% { transform: translate(-50%, -50%) rotate(286deg) translateX(273px) rotate(-286deg) scale(.95); opacity: .82; filter: blur(.22px); }
  100% { transform: translate(-50%, -50%) rotate(366deg) translateX(273px) rotate(-366deg) scale(1.02); opacity: 1; filter: blur(0); }
}

@keyframes orbitModuleThree {
  0% { transform: translate(-50%, -50%) rotate(128deg) translateX(252px) rotate(-128deg) scale(.96); opacity: .9; filter: blur(.12px); }
  22% { transform: translate(-50%, -50%) rotate(207deg) translateX(252px) rotate(-207deg) scale(1.03); opacity: 1; filter: blur(0); }
  48% { transform: translate(-50%, -50%) rotate(301deg) translateX(252px) rotate(-301deg) scale(.94); opacity: .78; filter: blur(.28px); }
  75% { transform: translate(-50%, -50%) rotate(398deg) translateX(252px) rotate(-398deg) scale(1.02); opacity: 1; filter: blur(0); }
  100% { transform: translate(-50%, -50%) rotate(488deg) translateX(252px) rotate(-488deg) scale(.96); opacity: .9; filter: blur(.12px); }
}

@media (max-width: 1080px) {
  .holo-card {
    min-width: 140px;
    padding: 12px 13px;
  }

  @keyframes orbitModuleOne {
    0% { transform: translate(-50%, -50%) rotate(220deg) translateX(218px) rotate(-220deg) scale(.96); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(580deg) translateX(218px) rotate(-580deg) scale(.96); opacity: 1; }
  }

  @keyframes orbitModuleTwo {
    0% { transform: translate(-50%, -50%) rotate(6deg) translateX(224px) rotate(-6deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(366deg) translateX(224px) rotate(-366deg) scale(1); opacity: 1; }
  }

  @keyframes orbitModuleThree {
    0% { transform: translate(-50%, -50%) rotate(128deg) translateX(208px) rotate(-128deg) scale(.94); opacity: .9; }
    100% { transform: translate(-50%, -50%) rotate(488deg) translateX(208px) rotate(-488deg) scale(.94); opacity: .9; }
  }
}

@media (max-width: 560px) {
  .holo-card {
    display: block;
    min-width: 112px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .holo-card small {
    font-size: .56rem;
  }

  .holo-card strong {
    font-size: .78rem;
  }

  @keyframes orbitModuleOne {
    0% { transform: translate(-50%, -50%) rotate(225deg) translateX(155px) rotate(-225deg) scale(.9); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(585deg) translateX(155px) rotate(-585deg) scale(.9); opacity: 1; }
  }

  @keyframes orbitModuleTwo {
    0% { transform: translate(-50%, -50%) rotate(10deg) translateX(160px) rotate(-10deg) scale(.94); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(370deg) translateX(160px) rotate(-370deg) scale(.94); opacity: 1; }
  }

  @keyframes orbitModuleThree {
    0% { transform: translate(-50%, -50%) rotate(132deg) translateX(148px) rotate(-132deg) scale(.86); opacity: .9; }
    100% { transform: translate(-50%, -50%) rotate(492deg) translateX(148px) rotate(-492deg) scale(.86); opacity: .9; }
  }
}

/* ==========================================================
   Ajuste final Rocket Tech — órbitas, margens e responsivo
   ========================================================== */

/* Margens mais seguras em todas as telas */
.container {
  width: min(calc(100% - 48px), var(--container));
}

/* Header/logo com respiro para não encostar na barra */
.navbar {
  min-height: 76px;
  padding-block: 8px;
}

.brand {
  min-width: 158px;
}

.brand-logo {
  width: clamp(138px, 13vw, 188px);
  max-height: 64px;
  object-fit: contain;
}

/* Remove as linhas soltas/desconexas que passavam perto do RT */
.hero-orbital-lines,
.scan-ring,
.orbit-path {
  display: none !important;
}

/* Planeta RT mais limpo, sem linhas internas e sem divisões */
.central-planet {
  width: min(50%, 285px);
  z-index: 4;
  border-color: rgba(0,255,136,.32);
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.18), transparent 0 12%, transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(0,255,136,.15), transparent 0 40%, transparent 66%),
    radial-gradient(circle at 35% 34%, #0c2716 0%, #061209 54%, #010302 100%) !important;
  box-shadow:
    0 0 86px rgba(0,255,136,.18),
    inset 0 0 42px rgba(0,255,136,.16),
    inset -20px -28px 42px rgba(0,0,0,.76);
}

.central-planet::before,
.central-planet::after,
.planet-grid {
  display: none !important;
}

.planet-atmosphere {
  opacity: .5;
}

.planet-core-light {
  opacity: .62;
}

/* Órbitas mais limpas ao redor do planeta */
.module-orbit-ring {
  z-index: 2;
  opacity: .58;
  border-color: rgba(0,255,136,.22);
}

.module-orbit-ring-one {
  width: 82%;
  height: 55%;
}

.module-orbit-ring-two {
  width: 70%;
  height: 48%;
}

.module-orbit-ring-three {
  width: 58%;
  height: 38%;
  opacity: .34;
}

/* Módulos padronizados com o mesmo tamanho */
.holo-card {
  width: 176px !important;
  min-width: 176px !important;
  height: 86px !important;
  padding: 16px 18px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-radius: 22px;
  text-align: left;
  overflow: hidden;
  z-index: 6;
}

.holo-card small,
.holo-card strong {
  display: block;
  white-space: nowrap;
  line-height: 1.05;
}

.holo-card small {
  font-size: .76rem;
  letter-spacing: .16em;
}

.holo-card strong {
  font-size: 1.15rem;
  letter-spacing: -.035em;
}

/* Reorganiza a órbita para evitar sobreposição entre os módulos */
.holo-card-one {
  animation: orbitModuleOneFinal 28s linear infinite !important;
}

.holo-card-two {
  animation: orbitModuleTwoFinal 28s linear infinite !important;
}

.holo-card-three {
  animation: orbitModuleThreeFinal 28s linear infinite !important;
}

@keyframes orbitModuleOneFinal {
  0% { transform: translate(-50%, -50%) rotate(330deg) translateX(214px) rotate(-330deg) scale(1); opacity: 1; filter: blur(0); }
  25% { transform: translate(-50%, -50%) rotate(420deg) translateX(214px) rotate(-420deg) scale(.96); opacity: .9; filter: blur(.12px); }
  50% { transform: translate(-50%, -50%) rotate(510deg) translateX(214px) rotate(-510deg) scale(.98); opacity: .96; filter: blur(0); }
  75% { transform: translate(-50%, -50%) rotate(600deg) translateX(214px) rotate(-600deg) scale(1.02); opacity: 1; filter: blur(0); }
  100% { transform: translate(-50%, -50%) rotate(690deg) translateX(214px) rotate(-690deg) scale(1); opacity: 1; filter: blur(0); }
}

@keyframes orbitModuleTwoFinal {
  0% { transform: translate(-50%, -50%) rotate(90deg) translateX(214px) rotate(-90deg) scale(.98); opacity: .96; filter: blur(0); }
  25% { transform: translate(-50%, -50%) rotate(180deg) translateX(214px) rotate(-180deg) scale(1.02); opacity: 1; filter: blur(0); }
  50% { transform: translate(-50%, -50%) rotate(270deg) translateX(214px) rotate(-270deg) scale(1); opacity: 1; filter: blur(0); }
  75% { transform: translate(-50%, -50%) rotate(360deg) translateX(214px) rotate(-360deg) scale(.96); opacity: .9; filter: blur(.12px); }
  100% { transform: translate(-50%, -50%) rotate(450deg) translateX(214px) rotate(-450deg) scale(.98); opacity: .96; filter: blur(0); }
}

@keyframes orbitModuleThreeFinal {
  0% { transform: translate(-50%, -50%) rotate(210deg) translateX(214px) rotate(-210deg) scale(1.02); opacity: 1; filter: blur(0); }
  25% { transform: translate(-50%, -50%) rotate(300deg) translateX(214px) rotate(-300deg) scale(1); opacity: 1; filter: blur(0); }
  50% { transform: translate(-50%, -50%) rotate(390deg) translateX(214px) rotate(-390deg) scale(.96); opacity: .9; filter: blur(.12px); }
  75% { transform: translate(-50%, -50%) rotate(480deg) translateX(214px) rotate(-480deg) scale(.98); opacity: .96; filter: blur(0); }
  100% { transform: translate(-50%, -50%) rotate(570deg) translateX(214px) rotate(-570deg) scale(1.02); opacity: 1; filter: blur(0); }
}

/* Responsividade revisada */
@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .brand-logo {
    width: clamp(136px, 18vw, 176px);
    max-height: 58px;
  }

  .space-stage {
    width: min(100%, 500px);
  }

  .central-planet {
    width: min(48%, 248px);
  }

  .holo-card {
    width: 154px !important;
    min-width: 154px !important;
    height: 78px !important;
    padding: 13px 15px !important;
  }

  .holo-card small { font-size: .64rem; }
  .holo-card strong { font-size: 1rem; }

  @keyframes orbitModuleOneFinal {
    0% { transform: translate(-50%, -50%) rotate(330deg) translateX(158px) rotate(-330deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(690deg) translateX(158px) rotate(-690deg) scale(1); opacity: 1; }
  }

  @keyframes orbitModuleTwoFinal {
    0% { transform: translate(-50%, -50%) rotate(90deg) translateX(158px) rotate(-90deg) scale(.98); opacity: .96; }
    100% { transform: translate(-50%, -50%) rotate(450deg) translateX(158px) rotate(-450deg) scale(.98); opacity: .96; }
  }

  @keyframes orbitModuleThreeFinal {
    0% { transform: translate(-50%, -50%) rotate(210deg) translateX(158px) rotate(-210deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(570deg) translateX(158px) rotate(-570deg) scale(1); opacity: 1; }
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .navbar {
    min-height: 68px;
    padding-block: 6px;
  }

  .brand-logo {
    width: 142px;
    max-height: 52px;
  }

  .nav-links {
    top: 78px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    width: 100%;
    overflow: hidden;
    padding-block: 8px 24px;
  }

  .space-stage {
    width: min(100%, 430px);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .navbar {
    min-height: 64px;
  }

  .brand-logo {
    width: 126px;
    max-height: 48px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: 74px;
  }

  .hero {
    padding-top: 36px;
  }

  .space-stage {
    width: min(100%, 344px);
  }

  .central-planet {
    width: 52%;
  }

  .holo-card {
    width: 112px !important;
    min-width: 112px !important;
    height: 62px !important;
    padding: 9px 10px !important;
    border-radius: 15px;
    gap: 5px;
  }

  .holo-card small {
    font-size: .49rem;
    letter-spacing: .13em;
  }

  .holo-card strong {
    font-size: .74rem;
  }

  @keyframes orbitModuleOneFinal {
    0% { transform: translate(-50%, -50%) rotate(330deg) translateX(116px) rotate(-330deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(690deg) translateX(116px) rotate(-690deg) scale(1); opacity: 1; }
  }

  @keyframes orbitModuleTwoFinal {
    0% { transform: translate(-50%, -50%) rotate(90deg) translateX(116px) rotate(-90deg) scale(.98); opacity: .96; }
    100% { transform: translate(-50%, -50%) rotate(450deg) translateX(116px) rotate(-450deg) scale(.98); opacity: .96; }
  }

  @keyframes orbitModuleThreeFinal {
    0% { transform: translate(-50%, -50%) rotate(210deg) translateX(116px) rotate(-210deg) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(570deg) translateX(116px) rotate(-570deg) scale(1); opacity: 1; }
  }
}

/* ==========================================================
   Abertura Rocket Tech — intro espacial com código digitando
   Inspirada no vídeo, mas com mais acabamento e animações
   ========================================================== */
body.intro-lock {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 255, 136, .12), transparent 0 25%, transparent 48%),
    radial-gradient(circle at 50% 55%, rgba(255,255,255,.05), transparent 0 12%, transparent 35%),
    linear-gradient(180deg, #010302 0%, #020805 48%, #000 100%);
  color: var(--white);
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  transition: opacity .9s var(--ease), visibility .9s var(--ease), transform .9s var(--ease);
}

.site-intro::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -4;
  opacity: .42;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(0,255,136,.7) 0 1px, transparent 1.8px);
  background-size: 130px 130px, 190px 190px;
  background-position: 18px 30px, 80px 96px;
  animation: introSingleStarDrift 18s linear infinite;
}

.site-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  pointer-events: none;
}


.intro-nebula {
  position: absolute;
  width: min(720px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,255,136,.2), transparent 0 20%, transparent 58%),
    conic-gradient(from 120deg, transparent, rgba(0,255,136,.22), transparent 33%, rgba(255,255,255,.05), transparent 72%, rgba(0,255,136,.18), transparent);
  filter: blur(9px);
  opacity: .74;
  animation: introNebulaSpin 13s linear infinite;
}

.intro-orbit {
  position: absolute;
  width: min(860px, 112vw);
  height: min(300px, 40vw);
  border: 1px solid rgba(0,255,136,.24);
  border-radius: 50%;
  z-index: -2;
  transform: rotate(-10deg);
  box-shadow: 0 0 35px rgba(0,255,136,.12);
  animation: introOrbitPulse 3.8s ease-in-out infinite alternate;
}

.intro-orbit-two {
  width: min(760px, 100vw);
  height: min(250px, 35vw);
  border-color: rgba(255,255,255,.18);
  transform: rotate(14deg);
  animation-delay: -1.5s;
}

.intro-orbit::after {
  position: absolute;
  left: 18%;
  top: 42%;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(0,255,136,.9);
  animation: introDotOrbit 4.8s linear infinite;
}

.intro-logo-wrap {
  position: absolute;
  left: max(26px, 4vw);
  top: max(18px, 3vw);
  width: clamp(116px, 14vw, 178px);
  opacity: 0;
  transform: translateY(-12px) scale(.96);
  animation: introLogoIn .9s var(--ease) .25s forwards;
}

.intro-logo {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 18px rgba(0,255,136,.42));
}

.intro-code-card {
  position: relative;
  width: min(760px, calc(100% - 32px));
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(0,255,136,.22);
  border-radius: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    radial-gradient(circle at 50% 20%, rgba(0,255,136,.12), transparent 0 44%);
  box-shadow:
    0 35px 120px rgba(0,0,0,.56),
    inset 0 1px 0 rgba(255,255,255,.11),
    0 0 70px rgba(0,255,136,.12);
  backdrop-filter: blur(10px);
  text-align: center;
  transform: translateY(22px) scale(.96);
  opacity: 0;
  animation: introCardIn .9s var(--ease) .55s forwards;
}

.intro-code-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(0,255,136,.34), transparent 62%);
  opacity: .46;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.intro-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.05rem, 2.3vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 0 18px rgba(255,255,255,.35);
  opacity: 0;
}

.intro-tag-open {
  animation: introTypeTag .45s steps(4, end) .95s forwards;
}

.intro-tag-close {
  animation: introTypeTag .45s steps(5, end) 2.45s forwards;
}

.intro-tag-close i {
  width: .42em;
  height: 1.1em;
  margin-left: .12em;
  background: var(--green-2);
  box-shadow: 0 0 16px rgba(0,255,136,.85);
  animation: introCursorBlink .72s step-end infinite;
}

.intro-title {
  margin: 12px 0 10px;
  max-width: 13ch;
  overflow: hidden;
  font-size: clamp(2rem, 7vw, 5.25rem);
  line-height: .92;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -.06em;
  color: var(--white);
  text-shadow:
    0 0 18px rgba(255,255,255,.35),
    0 0 34px rgba(0,255,136,.28);
  clip-path: inset(0 100% 0 0);
  animation: introRevealText 1.05s steps(18, end) 1.35s forwards;
}

.intro-title strong {
  color: var(--white);
  text-shadow:
    0 0 18px rgba(255,255,255,.45),
    0 0 30px rgba(0,255,136,.46);
}

.intro-subtitle {
  width: min(560px, 100%);
  margin: 14px auto 0;
  color: var(--text);
  font-size: clamp(.86rem, 1.6vw, 1rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  animation: introSubtitleIn .7s var(--ease) 2.85s forwards;
}

.intro-progress {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 7vh, 74px);
  width: min(360px, calc(100% - 64px));
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 16px rgba(0,0,0,.55);
  transform: translateX(-50%);
}

.intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), var(--green-2), transparent);
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 22px rgba(0,255,136,.85);
  animation: introProgress 4.2s var(--ease) forwards;
}



@keyframes introSingleStarDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-70px, 70px, 0); }
}

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

@keyframes introOrbitPulse {
  from { opacity: .32; filter: blur(.1px); }
  to { opacity: .78; filter: blur(.25px); }
}

@keyframes introDotOrbit {
  from { transform: rotate(0deg) translateX(360px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(360px) rotate(-360deg); }
}

@keyframes introLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes introTypeTag {
  to { opacity: 1; }
}

@keyframes introRevealText {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes introCursorBlink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes introSubtitleIn {
  to { opacity: .86; transform: translateY(0); }
}

@keyframes introProgress {
  to { transform: scaleX(1); }
}

@media (max-width: 720px) {
  .intro-code-card {
    min-height: 276px;
  }

  .intro-logo-wrap {
    width: 122px;
  }

  .intro-orbit {
    width: 120vw;
    height: 44vw;
  }

  .intro-title {
    letter-spacing: -.045em;
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    display: none !important;
  }

  body.intro-lock {
    overflow: auto;
  }
}

/* Ajuste solicitado: abertura com código sendo digitado exatamente como no vídeo */
.intro-code-terminal {
  width: min(820px, calc(100% - 32px));
  min-height: 260px;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(0, 20, 10, .78), rgba(0, 0, 0, .58)),
    radial-gradient(circle at 52% 18%, rgba(0,255,136,.13), transparent 0 42%);
}

.intro-terminal-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0,255,136,.16);
  background: rgba(0, 0, 0, .32);
}

.intro-terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  box-shadow: 0 0 12px rgba(255,255,255,.14);
}

.intro-terminal-bar span:nth-child(2) {
  background: rgba(0,255,136,.58);
  box-shadow: 0 0 14px rgba(0,255,136,.45);
}

.intro-terminal-bar span:nth-child(3) {
  background: rgba(141,255,197,.42);
}

.intro-terminal-bar small {
  margin-left: 8px;
  color: rgba(238,251,243,.62);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.intro-code-line {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px) clamp(22px, 5vw, 62px) 18px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(2.35rem, 7vw, 6rem);
  line-height: 1.18;
  font-weight: 900;
  color: var(--white);
  text-shadow:
    0 0 18px rgba(255,255,255,.28),
    0 0 34px rgba(0,255,136,.34);
}

.intro-code-line code {
  color: inherit;
}

.intro-code-line .code-name {
  color: var(--white);
}

.intro-caret {
  width: .55em;
  height: 1em;
  margin-left: .1em;
  display: inline-block;
  transform: translateY(.12em);
  background: var(--green-2);
  box-shadow: 0 0 16px rgba(0,255,136,.9);
  animation: introCursorBlink .72s step-end infinite;
}

.intro-code-terminal .intro-subtitle {
  padding: 0 clamp(22px, 5vw, 62px) 34px;
  margin: 0;
  width: 100%;
  opacity: 0;
  animation-delay: 3.05s;
}

@media (max-width: 720px) {
  .intro-code-terminal {
    min-height: 228px;
  }

  .intro-terminal-bar {
    min-height: 42px;
    padding: 0 14px;
  }

  .intro-terminal-bar small {
    font-size: .62rem;
  }

  .intro-code-line {
    min-height: 130px;
    padding-top: 30px;
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

/* ==========================================================
   Ajustes finais — abertura mais orgânica + métricas premium
   ========================================================== */
.site-intro::before {
  opacity: 0 !important;
  background-image: none !important;
  animation: none !important;
}

.intro-starfield {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  pointer-events: none;
}

.intro-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 999px;
  background: rgba(255,255,255,var(--o));
  box-shadow: 0 0 var(--glow-size) rgba(255,255,255,.45);
  animation: organicStarTwinkle var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

.intro-star.green {
  background: rgba(0,255,136,var(--o));
  box-shadow: 0 0 var(--glow-size) rgba(0,255,136,.62);
}

@keyframes organicStarTwinkle {
  0%, 100% { transform: translate3d(0,0,0) scale(.72); opacity: calc(var(--o) * .35); }
  38% { transform: translate3d(var(--dx), var(--dy), 0) scale(1.15); opacity: var(--o); }
  72% { transform: translate3d(calc(var(--dx) * -0.45), calc(var(--dy) * .55), 0) scale(.82); opacity: calc(var(--o) * .55); }
}

.intro-code-line {
  justify-content: flex-start !important;
  padding-left: clamp(44px, 8vw, 92px) !important;
  padding-right: clamp(28px, 7vw, 76px) !important;
  letter-spacing: -.045em;
}

.intro-code-terminal .intro-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(44px, 8vw, 92px) !important;
  padding-right: clamp(28px, 7vw, 76px) !important;
  color: rgba(238,251,243,.88);
  font-weight: 600;
  letter-spacing: -.01em;
}

.intro-loader {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  border-top-color: var(--green-2);
  border-right-color: rgba(0,255,136,.85);
  box-shadow: 0 0 18px rgba(0,255,136,.42);
  animation: introLoaderSpin .8s linear infinite;
}

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

.mission-console {
  gap: 14px;
}

.mission-console article {
  min-height: 142px;
  padding: 18px 20px 20px;
  border-color: rgba(0,255,136,.16);
  background:
    radial-gradient(circle at 18% 16%, rgba(0,255,136,.17), transparent 0 36%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 22px 65px rgba(0,0,0,.22);
}

.mission-console article::after {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(0,255,136,.8);
  opacity: .8;
}

.metric-kicker,
.metric-label,
.metric-value {
  position: relative;
  z-index: 1;
}

.metric-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 10px;
  border: 1px solid rgba(0,255,136,.18);
  border-radius: 999px;
  color: var(--green-3);
  background: rgba(0,255,136,.065);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metric-value {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 14px;
  line-height: .86;
}

.mission-console .metric-value strong {
  display: inline-block;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  letter-spacing: -.06em;
}

.metric-value small {
  color: var(--green-2);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 0 24px rgba(0,255,136,.42);
}

.metric-label {
  display: block;
  margin-top: 12px;
  color: rgba(238,251,243,.76);
  font-size: .86rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .intro-code-line {
    padding-left: 28px !important;
    padding-right: 22px !important;
    letter-spacing: -.055em;
  }

  .intro-code-terminal .intro-subtitle {
    padding-left: 28px !important;
    padding-right: 22px !important;
    gap: 10px;
    font-size: .9rem;
  }

  .mission-console article {
    min-height: 118px;
    padding: 16px;
  }
}
.metric-kicker { margin-top: 0 !important; }

/* Ajuste fino: alinhamento do texto da métrica com o número */
.mission-console .metric-label {
  margin-left: 7px;
  text-align: left;
}

.mission-console .metric-value {
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .mission-console .metric-label {
    margin-left: 6px;
  }
}


/* Ajuste do bloco de contato */
.contact-actions .text-link {
  margin-top: 0;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(0, 255, 136, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.contact-actions .text-link:hover {
  background: rgba(0, 255, 136, .08);
  border-color: rgba(0, 255, 136, .48);
  transform: translateY(-3px);
}

.contact-actions .text-link::after {
  display: none;
}

@media (max-width: 560px) {
  .contact-actions .text-link {
    justify-content: center;
    width: 100%;
  }
}


/* Hero premium: leitura mais ergonômica e contraste reforçado */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content::before {
  position: absolute;
  inset: -38px -28px -30px -32px;
  z-index: -1;
  content: "";
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 255, 136, .10), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .24), transparent);
  pointer-events: none;
}

.hero-content h1 {
  max-width: 790px;
  color: rgba(255, 255, 255, .97);
  font-size: clamp(3.2rem, 6.1vw, 6.25rem);
  line-height: 1;
  letter-spacing: -.072em;
  text-wrap: balance;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .68);
}

.hero-content h1 span {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: inherit;
}

.hero-content p {
  max-width: 660px;
  color: rgba(236, 255, 244, .82);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.75;
}

.holo-card {
  width: 232px;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.holo-card small {
  color: var(--green-2);
  letter-spacing: .16em;
}

.holo-card strong {
  font-size: 1.08rem;
  line-height: 1.22;
}

@media (max-width: 1080px) {
  .hero-content h1 {
    max-width: 700px;
    font-size: clamp(3rem, 8vw, 5.6rem);
  }
}

@media (max-width: 860px) {
  .hero-content::before {
    inset: -26px -16px -24px -16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .50), rgba(0, 0, 0, .20));
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.4vw, 4.55rem);
    letter-spacing: -.055em;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }
}


/* Ajuste de alinhamento dos cards de projetos */
.projects-grid {
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-content h3 {
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.project-content p {
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}


/* Padronização visual dos textos nos cards de projeto */
.project-content h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.project-content p {
  min-height: 5.2em;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.project-link {
  font-size: 1rem;
}


/* =========================================================
   ROCKET TECH — REVISÃO LIMPA FINAL
   Base: rocket-tech-webchecklist-texto-ajustado.zip
   Ajustes: intro padrão, navbar mobile e módulos orbitais
========================================================= */

/* Intro: volta ao comportamento original e evita navbar aparecer por cima */
body.intro-lock {
  overflow: hidden !important;
}

body.intro-lock .site-header,
body.intro-lock .navbar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-intro {
  z-index: 99999 !important;
}

.site-intro.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .75s ease, visibility .75s ease !important;
}

/* Navbar mobile: botão alinhado e menu abrindo corretamente */
@media (max-width: 860px) {
  .site-header {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .navbar {
    width: min(calc(100% - 20px), var(--container)) !important;
    margin-inline: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding-inline: 16px !important;
    box-sizing: border-box !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 0 1 auto !important;
    margin-right: auto !important;
  }

  .brand-logo {
    width: clamp(126px, 38vw, 150px) !important;
    max-width: 45vw !important;
    height: auto !important;
  }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
    z-index: 80 !important;
    cursor: pointer !important;
  }

  .menu-toggle span {
    pointer-events: none !important;
  }

  .nav-links {
    position: fixed !important;
    top: 92px !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 75 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid rgba(0,255,136,.22) !important;
    border-radius: 22px !important;
    background: rgba(2, 9, 5, .96) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) scale(.98) !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
  }

  .nav-links.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .nav-links li {
    width: 100% !important;
  }

  .nav-links a {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: flex-start !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.04) !important;
    box-sizing: border-box !important;
  }

  .nav-links .nav-cta {
    justify-content: center !important;
    color: #061009 !important;
    background: linear-gradient(135deg, var(--green-2), var(--green)) !important;
  }
}

/* Desktop: mantém a órbita dentro da área visual para não bater no texto */
@media (min-width: 861px) {
  .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr) !important;
    gap: clamp(30px, 4vw, 70px) !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 10 !important;
    max-width: 680px !important;
  }

  .hero-visual {
    justify-self: end !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .space-stage {
    width: min(100%, 620px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
  }
}

/* Planeta e anéis centralizados */
.space-stage {
  position: relative !important;
  isolation: isolate !important;
}

.central-planet {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 4 !important;
}

.module-orbit-ring,
.orbit-path,
.scan-ring {
  left: 50% !important;
  top: 50% !important;
  transform-origin: center center !important;
}

/* Cards orbitais: texto centralizado e sem vazamento */
.holo-card {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 8 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  white-space: normal !important;
  width: 172px !important;
  min-width: 172px !important;
  height: 84px !important;
  padding: 13px 15px !important;
  border-radius: 20px !important;
  transform-origin: center center !important;
  will-change: transform !important;
}

.holo-card small,
.holo-card strong {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  line-height: 1.12 !important;
}

.holo-card small {
  font-size: .64rem !important;
  letter-spacing: .13em !important;
}

.holo-card strong {
  font-size: .96rem !important;
  letter-spacing: -.02em !important;
}

/* Órbita triangular funcional: 120° de distância, mais próxima do RT */
.holo-card-one { animation: rtOrbitOne 28s linear infinite !important; }
.holo-card-two { animation: rtOrbitTwo 28s linear infinite !important; }
.holo-card-three { animation: rtOrbitThree 28s linear infinite !important; }

@keyframes rtOrbitOne {
  0% { transform: translate(-50%, -50%) rotate(270deg) translateX(178px) rotate(-270deg); }
  100% { transform: translate(-50%, -50%) rotate(630deg) translateX(178px) rotate(-630deg); }
}

@keyframes rtOrbitTwo {
  0% { transform: translate(-50%, -50%) rotate(30deg) translateX(178px) rotate(-30deg); }
  100% { transform: translate(-50%, -50%) rotate(390deg) translateX(178px) rotate(-390deg); }
}

@keyframes rtOrbitThree {
  0% { transform: translate(-50%, -50%) rotate(150deg) translateX(178px) rotate(-150deg); }
  100% { transform: translate(-50%, -50%) rotate(510deg) translateX(178px) rotate(-510deg); }
}

/* Mobile: mesma ideia da segunda referência, perto do planeta e sem cortar texto */
@media (max-width: 860px) {
  .hero-visual {
    width: 100% !important;
    overflow: hidden !important;
    padding-block: 6px 22px !important;
  }

  .space-stage {
    width: min(100%, 392px) !important;
    max-width: calc(100vw - 18px) !important;
    min-height: 420px !important;
    margin-inline: auto !important;
    overflow: visible !important;
    transform: none !important;
  }

  .central-planet {
    width: 210px !important;
    height: 210px !important;
  }

  .central-planet strong {
    font-size: clamp(3.7rem, 18vw, 5rem) !important;
  }

  .module-orbit-ring-one { width: 86% !important; height: 54% !important; }
  .module-orbit-ring-two { width: 76% !important; height: 46% !important; }
  .module-orbit-ring-three { width: 64% !important; height: 38% !important; }

  .holo-card {
    width: 136px !important;
    min-width: 136px !important;
    height: 70px !important;
    min-height: 70px !important;
    padding: 9px 10px !important;
    border-radius: 15px !important;
  }

  .holo-card small {
    font-size: .43rem !important;
    letter-spacing: .075em !important;
  }

  .holo-card strong {
    font-size: .63rem !important;
    line-height: 1.1 !important;
  }

  .holo-card-one { animation: rtOrbitOneMobile 26s linear infinite !important; }
  .holo-card-two { animation: rtOrbitTwoMobile 26s linear infinite !important; }
  .holo-card-three { animation: rtOrbitThreeMobile 26s linear infinite !important; }

  @keyframes rtOrbitOneMobile {
    0% { transform: translate(-50%, -50%) rotate(270deg) translateX(118px) rotate(-270deg); }
    100% { transform: translate(-50%, -50%) rotate(630deg) translateX(118px) rotate(-630deg); }
  }

  @keyframes rtOrbitTwoMobile {
    0% { transform: translate(-50%, -50%) rotate(30deg) translateX(118px) rotate(-30deg); }
    100% { transform: translate(-50%, -50%) rotate(390deg) translateX(118px) rotate(-390deg); }
  }

  @keyframes rtOrbitThreeMobile {
    0% { transform: translate(-50%, -50%) rotate(150deg) translateX(118px) rotate(-150deg); }
    100% { transform: translate(-50%, -50%) rotate(510deg) translateX(118px) rotate(-510deg); }
  }
}

@media (max-width: 430px) {
  .space-stage {
    width: min(100%, 350px) !important;
    min-height: 386px !important;
  }

  .central-planet {
    width: 188px !important;
    height: 188px !important;
  }

  .holo-card {
    width: 124px !important;
    min-width: 124px !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 8px 9px !important;
  }

  .holo-card small {
    font-size: .39rem !important;
  }

  .holo-card strong {
    font-size: .56rem !important;
  }

  .holo-card-one { animation: rtOrbitOneSmall 26s linear infinite !important; }
  .holo-card-two { animation: rtOrbitTwoSmall 26s linear infinite !important; }
  .holo-card-three { animation: rtOrbitThreeSmall 26s linear infinite !important; }

  @keyframes rtOrbitOneSmall {
    0% { transform: translate(-50%, -50%) rotate(270deg) translateX(108px) rotate(-270deg); }
    100% { transform: translate(-50%, -50%) rotate(630deg) translateX(108px) rotate(-630deg); }
  }

  @keyframes rtOrbitTwoSmall {
    0% { transform: translate(-50%, -50%) rotate(30deg) translateX(108px) rotate(-30deg); }
    100% { transform: translate(-50%, -50%) rotate(390deg) translateX(108px) rotate(-390deg); }
  }

  @keyframes rtOrbitThreeSmall {
    0% { transform: translate(-50%, -50%) rotate(150deg) translateX(108px) rotate(-150deg); }
    100% { transform: translate(-50%, -50%) rotate(510deg) translateX(108px) rotate(-510deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .holo-card-one,
  .holo-card-two,
  .holo-card-three {
    animation: none !important;
  }

  .holo-card-one { transform: translate(-50%, -50%) rotate(270deg) translateX(108px) rotate(-270deg) !important; }
  .holo-card-two { transform: translate(-50%, -50%) rotate(30deg) translateX(108px) rotate(-30deg) !important; }
  .holo-card-three { transform: translate(-50%, -50%) rotate(150deg) translateX(108px) rotate(-150deg) !important; }
}


/* =========================================================
   NAVBAR PREMIUM FINAL — Rocket Tech
   Ajuste isolado: não altera intro nem órbita
========================================================= */

html {
  scroll-padding-top: 104px;
}

.site-header {
  position: fixed !important;
  top: 18px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
  content: none !important;
}

.rocket-nav {
  position: relative !important;
  pointer-events: auto !important;
  width: min(100% - 56px, 1180px) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 10px 14px 10px 16px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  border: 1px solid rgba(0, 255, 136, .22) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 9% 50%, rgba(0, 255, 136, .16), transparent 28%),
    linear-gradient(135deg, rgba(1, 10, 6, .84), rgba(2, 24, 13, .68)) !important;
  backdrop-filter: blur(20px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.12) !important;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, .46),
    0 0 42px rgba(0, 255, 136, .08),
    inset 0 1px 0 rgba(255, 255, 255, .09) !important;
  overflow: visible !important;
}

.rocket-nav::before {
  position: absolute;
  left: 190px;
  right: 180px;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.26), rgba(255,255,255,.11), rgba(0,255,136,.26), transparent);
  opacity: .65;
  pointer-events: none;
}

.rocket-nav::after {
  position: absolute;
  right: 156px;
  top: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--green-2, #00ff88);
  box-shadow: 0 0 20px rgba(0,255,136,.85);
  transform: translateY(-50%);
  animation: rocketNavSignal 2.7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes rocketNavSignal {
  from { opacity: .45; transform: translateY(-50%) scale(.78); }
  to { opacity: 1; transform: translateY(-50%) scale(1.18); }
}

.rocket-brand {
  position: relative !important;
  z-index: 2 !important;
  min-width: 182px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 10px 6px 6px !important;
  border-radius: 20px !important;
}

.rocket-brand .brand-logo,
.brand-logo {
  position: relative !important;
  z-index: 2 !important;
  width: 168px !important;
  max-height: 50px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 0 14px rgba(0,255,136,.14)) !important;
}

.brand-orbit {
  position: absolute;
  left: -2px;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0,255,136,.28);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-20deg);
  opacity: .72;
}

.brand-orbit::after {
  position: absolute;
  right: 5px;
  top: 7px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--green-2, #00ff88);
  box-shadow: 0 0 16px rgba(0,255,136,.82);
}

.mission-nav,
.nav-links {
  position: relative !important;
  z-index: 2 !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, .23) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06) !important;
  list-style: none !important;
}

.mission-nav a,
.nav-links a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: rgba(236,255,244,.72) !important;
  font-size: .84rem !important;
  font-weight: 850 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease !important;
}

.mission-nav a::after,
.nav-links a::after {
  display: none !important;
}

.mission-nav a span,
.nav-links a span {
  color: rgba(0,255,136,.72) !important;
  font-size: .68rem !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
}

.mission-nav a:hover,
.nav-links a:hover,
.mission-nav a.is-active,
.nav-links a.is-active {
  color: #031006 !important;
  background: linear-gradient(135deg, var(--green-2, #00ff88), var(--green, #18d46b)) !important;
  box-shadow: 0 12px 30px rgba(0,255,136,.18) !important;
  transform: translateY(-1px) !important;
}

.mission-nav a:hover span,
.nav-links a:hover span,
.mission-nav a.is-active span,
.nav-links a.is-active span {
  color: rgba(0,0,0,.58) !important;
}

.rocket-contact,
.nav-cta {
  position: relative !important;
  z-index: 2 !important;
  justify-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 48px !important;
  padding: 0 20px !important;
  border: 1px solid rgba(0,255,136,.25) !important;
  border-radius: 999px !important;
  color: #031006 !important;
  background: linear-gradient(135deg, var(--green-2, #00ff88), var(--green, #18d46b)) !important;
  font-size: .88rem !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(0,255,136,.18) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.rocket-contact:hover,
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 46px rgba(0,255,136,.28) !important;
}

.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #031006;
  box-shadow: 0 0 0 4px rgba(0,0,0,.10);
}

.menu-toggle {
  display: none !important;
}

/* Esconde navbar durante a intro, respeitando seu pedido */
body.intro-active .site-header,
body.intro-active .rocket-nav {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Mobile */
@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    top: 10px !important;
  }

  .rocket-nav {
    width: calc(100% - 22px) !important;
    min-height: 66px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 8px 12px 8px 14px !important;
    border-radius: 24px !important;
  }

  .rocket-nav::before,
  .rocket-nav::after {
    display: none !important;
  }

  .rocket-brand {
    min-width: 0 !important;
    margin-right: auto !important;
    padding: 4px 8px 4px 4px !important;
  }

  .rocket-brand .brand-logo,
  .brand-logo {
    width: clamp(132px, 38vw, 154px) !important;
    max-width: 44vw !important;
  }

  .brand-orbit {
    width: 44px !important;
    height: 44px !important;
  }

  .rocket-contact,
  .nav-cta {
    display: none !important;
  }

  .menu-toggle {
    position: relative !important;
    z-index: 1002 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin-left: auto !important;
    border: 1px solid rgba(0,255,136,.28) !important;
    border-radius: 17px !important;
    color: var(--green-2, #00ff88) !important;
    background: rgba(0,255,136,.07) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 28px rgba(0,255,136,.07) !important;
    cursor: pointer !important;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    position: absolute !important;
    width: 21px !important;
    height: 2px !important;
    content: "" !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform .22s ease, opacity .22s ease !important;
    pointer-events: none !important;
  }

  .menu-toggle::before {
    transform: translateY(-7px) !important;
  }

  .menu-toggle::after {
    transform: translateY(7px) !important;
  }

  .menu-toggle.is-open span {
    opacity: 0 !important;
  }

  .menu-toggle.is-open::before {
    transform: rotate(45deg) !important;
  }

  .menu-toggle.is-open::after {
    transform: rotate(-45deg) !important;
  }

  .mission-nav,
  .nav-links {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 22px !important;
    background:
      radial-gradient(circle at 14% 12%, rgba(0,255,136,.13), transparent 34%),
      rgba(1, 12, 6, .96) !important;
    border: 1px solid rgba(0,255,136,.20) !important;
    box-shadow: 0 24px 78px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.07) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  }

  .mission-nav.is-open,
  .nav-links.is-open,
  body.mobile-menu-open .mission-nav,
  body.mobile-menu-open .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .mission-nav a,
  .nav-links a {
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.035) !important;
    font-size: .95rem !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px !important;
  }

  .rocket-nav {
    width: calc(100% - 18px) !important;
    border-radius: 22px !important;
  }

  .rocket-brand .brand-logo,
  .brand-logo {
    width: 132px !important;
    max-width: 42vw !important;
  }

  .brand-orbit {
    width: 40px !important;
    height: 40px !important;
  }
}


/* =========================================================
   FIX CLIQUE NAVBAR MOBILE — seletor direto e isolado
========================================================= */

@media (max-width: 980px) {
  .rocket-nav {
    position: relative !important;
    overflow: visible !important;
  }

  [data-mobile-menu-toggle],
  .menu-toggle {
    display: inline-flex !important;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  #rocket-mobile-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
  }

  #rocket-mobile-menu.is-open,
  body.mobile-menu-open #rocket-mobile-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  #rocket-mobile-menu a {
    pointer-events: auto !important;
  }

  .menu-toggle.is-open span {
    opacity: 0 !important;
  }

  .menu-toggle.is-open::before {
    transform: rotate(45deg) !important;
  }

  .menu-toggle.is-open::after {
    transform: rotate(-45deg) !important;
  }
}


/* =========================================================
   FIX MOBILE — Navbar não cobre o texto inicial
========================================================= */

@media (max-width: 980px) {
  .hero {
    padding-top: clamp(155px, 19vh, 190px) !important;
  }

  .hero-grid {
    padding-top: 18px !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-content .eyebrow {
    margin-top: 8px !important;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: clamp(170px, 21vh, 205px) !important;
  }

  .hero-grid {
    padding-top: 22px !important;
  }

  .hero-content h1 {
    margin-top: 8px !important;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 188px !important;
  }
}
