:root {
  color-scheme: dark;
  font-family: "Share Tech Mono", ui-monospace, monospace;
  background-color: #0b0f1c;
  color: #e0e6ff;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.04), transparent 30%),
    #0b0f1c;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
}

body::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
}

.cosmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shooting-star {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(161, 190, 255, 0), rgba(161, 190, 255, 0.9));
  top: 20%;
  left: -30%;
  animation: shooting 8s ease-in-out infinite;
}

.shooting-star--alt {
  top: 55%;
  animation-delay: 2s;
  opacity: 0.7;
}

.shooting-star--fast {
  top: 75%;
  animation-duration: 6s;
  opacity: 0.5;
}

.site {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(9, 12, 24, 0.75);
  backdrop-filter: blur(8px);
  animation: floatUp 1s ease-out;
}

.nav__logo {
  font-family: "Press Start 2P", "Share Tech Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 12px;
}

.nav__links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(90, 100, 150, 0.6);
  color: #e0e6ff;
  padding: 10px 18px;
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 14, 28, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  animation: floatUp 1.2s ease-out;
}

.hero__content h1 {
  font-family: "Press Start 2P", monospace;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(90, 106, 176, 0.35);
  margin-bottom: 18px;
}

.hero__content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.cta,
.ghost,
.mini {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Press Start 2P", monospace;
  text-transform: uppercase;
  color: #e0e6ff;
  cursor: pointer;
}

.cta {
  padding: 14px 20px;
  background: rgba(90, 100, 150, 0.6);
  font-size: 11px;
}

.ghost {
  padding: 12px 18px;
  background: transparent;
  font-size: 11px;
}

.mini {
  padding: 10px 16px;
  background: rgba(90, 100, 150, 0.5);
  font-size: 10px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  font-size: 12px;
}

.hero__stats strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__card {
  width: min(320px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(80, 90, 140, 0.5), rgba(20, 25, 45, 0.9));
  padding: 20px;
  display: grid;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(7, 10, 20, 0.6);
}

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

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9fb6ff;
  box-shadow: 0 0 12px rgba(159, 182, 255, 0.9);
  animation: pulse 2s infinite;
}

.hero__card-body {
  display: grid;
  place-items: center;
  position: relative;
  height: 200px;
}

.planet {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #9fb6ff, #3f4e9c 60%, #0b0f1c 100%);
  box-shadow: 0 0 30px rgba(130, 150, 255, 0.4);
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  animation: spin 12s linear infinite;
}

.orbit span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0e6ff;
}

.orbit span:nth-child(1) {
  top: 20px;
  left: 50%;
}

.orbit span:nth-child(2) {
  bottom: 30px;
  left: 20%;
}

.orbit span:nth-child(3) {
  right: 25px;
  top: 50%;
}

.hero__card-footer p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 12px;
}

.section {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 28, 0.65);
  backdrop-filter: blur(6px);
  animation: floatUp 1.3s ease-out;
}

.section__header h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section__header p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 24px;
}

.section--screenshots {
  display: grid;
  gap: 24px;
}

.screenshots__intro h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.screenshots__intro p {
  font-size: 13px;
  opacity: 0.8;
  max-width: 720px;
}

.screenshots__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.screenshot {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 16, 30, 0.7);
  min-height: 260px;
  box-shadow: 0 20px 40px rgba(7, 10, 20, 0.4);
  animation: float 7s ease-in-out infinite;
}

.screenshot--one {
  transform: rotate(-1.5deg);
  animation-delay: 0.4s;
}

.screenshot--two {
  transform: rotate(1deg);
  animation-delay: 0.8s;
}

.screenshot--three {
  transform: rotate(-0.5deg);
  animation-delay: 1.2s;
}

.screenshot__mock {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(45, 55, 95, 0.8), rgba(18, 22, 40, 0.9));
  position: relative;
  overflow: hidden;
  min-height: 190px;
}

.screenshot__mock::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(159, 182, 255, 0.18), transparent 60%);
  opacity: 0.8;
  animation: drift 8s ease-in-out infinite;
}

.screenshot__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  z-index: 1;
}

.screenshot__badge {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(90, 100, 150, 0.6);
  font-size: 10px;
}

.screenshot__body {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 110px;
  z-index: 1;
}

.screenshot__planet {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c9d6ff, #5f73d1 60%, #12162a 100%);
  box-shadow: 0 0 20px rgba(130, 150, 255, 0.5);
}

.screenshot__orbit {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  animation: spin 10s linear infinite;
}

.screenshot__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  z-index: 1;
}

.screenshot__grid div {
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(14, 18, 34, 0.8);
  box-shadow: inset 0 0 16px rgba(96, 120, 255, 0.2);
}

.screenshot__list {
  display: grid;
  gap: 10px;
  z-index: 1;
}

.screenshot__list div {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(14, 18, 34, 0.75);
}

.screenshot__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  z-index: 1;
}

.screenshot figcaption {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.feature-grid article {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  background: rgba(12, 16, 30, 0.7);
  min-height: 140px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(7, 10, 20, 0.5);
}

.feature-grid h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  margin-bottom: 10px;
}

.feature-grid p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.section--split::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 182, 255, 0.2), transparent 70%);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.sector-card {
  border-radius: 18px;
  padding: 20px;
  background: rgba(12, 16, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(159, 182, 255, 0.6);
}

.sector-card h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
}

.section--contact {
  display: grid;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 16, 30, 0.7);
  color: #e0e6ff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(224, 230, 255, 0.6);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 12, 24, 0.75);
  backdrop-filter: blur(6px);
}

.footer h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 12px;
  opacity: 0.8;
  max-width: 320px;
}

.footer__links {
  display: grid;
  gap: 10px;
  font-size: 12px;
}

.footer__links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer__credit {
  font-size: 12px;
  align-self: flex-end;
}

.footer__credit a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

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

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes shooting {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(140vw) translateY(20vh);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20px, -10px, 0);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .site {
    padding: 24px 16px 48px;
  }

  .hero,
  .section {
    padding: 24px;
  }

  .hero__content h1 {
    font-size: 18px;
  }
}
