:root {
  color-scheme: dark;
  --bg: #090d13;
  --text: #f5f8ff;
  --muted: #bbccdf;
  --accent: #005afa;
  --stroke: rgba(159, 196, 234, 0.22);
  --glass: linear-gradient(
    155deg,
    rgba(43, 60, 76, 0.71),
    rgba(16, 27, 40, 0.72)
  );
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input {
  font: inherit;
}
:focus-visible {
  outline: 3px solid #91bbff;
  outline-offset: 3px;
}
.skip {
  position: absolute;
  top: -70px;
  left: 20px;
  padding: 12px 18px;
  background: #fff;
  color: #111;
  z-index: 30;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  width: min(1410px, calc(100% - 96px));
  margin-inline: auto;
}
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 20, 30, 0.87);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: 213px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links > a:not(.button) {
  font-size: 15px;
  text-decoration: none;
  color: #c7d4e4;
}
.nav-links > a:not(.button):hover {
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: #fff;
  padding: 9px 13px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 100px;
  border: 1px solid rgba(161, 195, 236, 0.45);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  border-color: #b7d0f7;
}
.button.primary {
  background: var(--accent);
  border-color: #6fa3ff;
  color: #fff;
}
.button.primary:hover {
  background: #0c67ff;
}
.button.secondary {
  background: linear-gradient(
    160deg,
    rgba(61, 80, 100, 0.44),
    rgba(25, 33, 44, 0.55)
  );
  color: #fff;
}
.button.small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px rgba(242, 248, 255, 0.17);
  border-radius: 24px;
}
.eyebrow {
  color: #80b2ff;
  font-size: 13px;
  letter-spacing: 0.19em;
  font-weight: 800;
  margin: 0 0 25px;
}
.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
}
.hero-planet {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(9, 13, 19, 0.22) 4%,
      rgba(9, 13, 19, 0.33) 55%,
      #090d13 100%
    ),
    url("/assets/hero/earth-hero.webp") center 33% / cover no-repeat;
  will-change: auto;
}
.hero-inner {
  padding-top: 140px;
  position: relative;
}
.hero h1 {
  font-size: clamp(54px, 6.4vw, 104px);
  letter-spacing: -0.062em;
  line-height: 1.04;
  margin: 0 0 26px;
}
.lead {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.43;
  max-width: 670px;
  color: #d9e5f3;
  margin: 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.hero-note {
  color: #b6c8da;
  font-size: 14px;
  margin-top: 32px;
}
.pillars {
  position: relative;
  margin-top: -96px;
  padding: 33px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  z-index: 2;
}
.pillars > div {
  padding: 4px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillars > div + div {
  border-left: 1px solid var(--stroke);
}
.pillars .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 90, 250, 0.5);
}
.pillars strong {
  font-size: 20px;
}
.pillars small {
  font-size: 14px;
  color: var(--muted);
}
.section {
  padding: 145px 0 30px;
  position: relative;
}
.section h2 {
  font-size: clamp(35px, 4.5vw, 59px);
  line-height: 1.14;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
  max-width: 1100px;
}
.subhead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 46px;
}
.product {
  padding-top: 150px;
}
.screen {
  background: linear-gradient(
    145deg,
    rgba(30, 48, 68, 0.8),
    rgba(15, 23, 32, 0.8)
  );
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 21px;
  margin: 0;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.16);
}
.screen.large {
  padding: 24px;
}
.screen img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
.screen-bar {
  display: flex;
  gap: 7px;
  padding: 0 0 18px 2px;
}
.screen-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f77f8f;
}
.screen-bar i:nth-child(2) {
  background: #e8bf7a;
}
.screen-bar i:nth-child(3) {
  background: #6adabb;
}
.screen-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.screen figcaption {
  font-size: 16px;
  color: #86b4ff;
  font-weight: 800;
  margin: 0 0 15px;
}
.screen figcaption span {
  color: var(--text);
  margin-left: 10px;
}
.caption {
  font-size: 13px;
  line-height: 1.5;
  color: #a9bbcf;
  margin-top: 16px;
}
.features {
  background: radial-gradient(
    circle 600px at 0 55%,
    rgba(0, 90, 250, 0.1),
    transparent 75%
  );
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature {
  padding: 31px;
  min-height: 236px;
}
.feature-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(0, 90, 250, 0.18);
  color: #90baff;
  font-weight: 800;
}
.feature h3 {
  margin: 25px 0 12px;
  font-size: 22px;
}
.feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.journey-steps {
  list-style: none;
  padding: 0;
  margin: 75px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 25px;
}
.journey-steps:before {
  content: "";
  height: 2px;
  background: #4d7ec0;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 28px;
}
.journey-steps li {
  position: relative;
}
.journey-steps li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #9bc2ff;
  box-shadow: 0 0 20px rgba(0, 90, 250, 0.23);
  font-weight: 800;
}
.journey-steps h3 {
  font-size: 22px;
  margin: 34px 0 8px;
}
.journey-steps p {
  color: var(--muted);
  margin: 0;
  max-width: 240px;
  line-height: 1.5;
}
.pricing {
  background: radial-gradient(
    circle 650px at 100% 50%,
    rgba(0, 90, 250, 0.09),
    transparent 75%
  );
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin: 50px 0 0;
}
.price {
  padding: 31px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 455px;
}
.price.featured {
  outline: 2px solid rgba(68, 138, 255, 0.72);
  outline-offset: -8px;
}
.badge {
  position: absolute;
  right: 29px;
  top: 27px;
  font-size: 12px;
  padding: 8px 13px;
  border-radius: 40px;
  background: var(--accent);
  font-weight: 700;
}
.price h3 {
  font-size: 29px;
  margin: 13px 0 8px;
}
.price p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 25px;
}
.placeholder-price {
  font-size: 22px;
  font-weight: 800;
  padding-top: 25px;
  border-top: 1px solid var(--stroke);
}
.price ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: #d6e4f2;
  font-size: 14px;
}
.price li:before {
  content: "✓";
  color: #84b7ff;
  margin-right: 10px;
}
.price .button {
  margin-top: auto;
  font-size: 14px;
}
.activation-grid {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}
.activation-grid article {
  min-height: 160px;
  border: 1px solid var(--stroke);
  border-radius: 17px;
  background: rgba(13, 27, 43, 0.53);
  padding: 31px;
  display: flex;
  gap: 26px;
}
.activation-grid article > span {
  font-size: 25px;
  color: #8ab7ff;
  font-weight: 800;
}
.activation-grid h3 {
  margin: 2px 0 12px;
  font-size: 21px;
}
.activation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 50px;
}
.faq-list details {
  padding: 26px 29px;
  border-radius: 16px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 750;
  font-size: 18px;
}
.faq-list details p {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
}
.final-cta {
  padding: 160px 0 80px;
  background: radial-gradient(
    circle 600px at 50% 70%,
    rgba(0, 90, 250, 0.12),
    transparent 80%
  );
}
.final-panel {
  padding: 75px;
}
.footer {
  border-top: 1px solid var(--stroke);
  padding-top: 38px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
  color: #b9cde5;
}
.footer a {
  text-decoration: none;
}
.footer span {
  margin-left: auto;
}
.footer p {
  width: 100%;
  margin: 0;
  font-size: 13px;
  color: #91a7bc;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .wrap {
    width: min(100% - 42px, 720px);
  }
  .nav {
    min-height: 72px;
  }
  .brand img {
    width: 178px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 22px;
    background: #111b27;
    border-bottom: 1px solid var(--stroke);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .button {
    justify-content: center;
  }
  .hero {
    min-height: 710px;
  }
  .hero-inner {
    padding-top: 110px;
  }
  .hero-planet {
    background-position:
      center,
      60% center;
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -70px;
    padding: 23px;
  }
  .pillars > div {
    padding: 18px;
  }
  .pillars > div:nth-child(3) {
    border-left: 0;
  }
  .pillars > div:nth-child(n + 3) {
    border-top: 1px solid var(--stroke);
  }
  .section {
    padding-top: 110px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price {
    min-height: 390px;
  }
  .screen-pair {
    gap: 14px;
  }
  .activation-grid {
    padding: 18px;
  }
  .activation-grid article {
    padding: 20px;
  }
  .footer span {
    margin-left: 0;
  }
}
@media (max-width: 620px) {
  .hero {
    min-height: 680px;
  }
  .hero-inner {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: clamp(54px, 12vw, 73px);
  }
  .lead {
    font-size: 19px;
  }
  .button {
    width: 100%;
  }
  .hero .actions {
    max-width: 300px;
  }
  .pillars {
    padding: 12px;
  }
  .pillars > div {
    padding: 17px 10px;
  }
  .pillars strong {
    font-size: 16px;
  }
  .pillars small {
    font-size: 11px;
  }
  .section {
    padding-top: 95px;
  }
  .section h2 {
    font-size: 38px;
  }
  .subhead {
    font-size: 17px;
  }
  .screen.large {
    padding: 12px;
  }
  .screen {
    padding: 10px;
  }
  .screen-bar {
    padding-bottom: 9px;
  }
  .screen-pair {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    min-height: 0;
  }
  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 54px;
  }
  .journey-steps:before {
    display: none;
  }
  .journey-steps h3 {
    margin-top: 20px;
  }
  .journey-steps p {
    font-size: 14px;
  }
  .activation-grid {
    grid-template-columns: 1fr;
  }
  .activation-grid article {
    min-height: 130px;
  }
  .final-panel {
    padding: 35px 25px;
  }
  .footer {
    gap: 22px;
  }
  .footer p {
    line-height: 1.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Production refinements from the desktop and mobile references. */
.copy-mobile {
  display: none;
}
section[id] {
  scroll-margin-top: 100px;
}
.hero h1 {
  font-size: clamp(54px, 5.25vw, 84px);
}
.product h2 {
  max-width: none;
}
.screen.large {
  position: relative;
}
.screen-label {
  position: absolute;
  right: 24px;
  bottom: -12px;
  margin: 0 !important;
  padding: 7px 18px;
  border: 1px solid rgba(164, 197, 232, 0.34);
  border-radius: 9px;
  background: #24384e;
  color: #c9d8ea !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.2;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  flex: none;
  color: #8ebcff;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list summary strong {
  display: block;
  font-weight: 750;
}
.faq-list summary small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.faq-list details[open] summary small {
  display: none;
}
.nav-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.menu-icon {
  display: grid;
  gap: 5px;
}
.menu-icon i {
  display: block;
  width: 21px;
  height: 2px;
  background: #f5f8ff;
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
  .hero-planet {
    background-position:
      center,
      center top;
  }
  .product .screen.large {
    margin-inline: 24px;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: none;
  }
  .js-ready .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: flex;
    position: static;
    flex-basis: 100%;
    padding: 0 0 20px;
    background: transparent;
    border: 0;
  }
  .js-ready .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 22px;
    background: #111b27;
    border-bottom: 1px solid var(--stroke);
  }
  .js-ready .nav-links.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .copy-desktop {
    display: none !important;
  }
  .copy-mobile {
    display: inline;
  }
  .feature p.copy-mobile {
    display: block;
  }
  .nav {
    min-height: 64px;
  }
  .brand img {
    width: 158px;
  }
  .js-ready .nav-links {
    top: 64px;
  }
  .hero {
    min-height: 574px;
  }
  .hero-inner {
    padding-top: 76px;
  }
  .hero h1 {
    font-size: clamp(54px, 12vw, 73px);
    margin-bottom: 18px;
  }
  .hero .lead {
    font-size: 17px;
    line-height: 1.55;
  }
  .hero .actions {
    max-width: 236px;
    margin-top: 16px;
  }
  .hero .actions .secondary,
  .hero-note {
    display: none;
  }
  .hero .button {
    min-height: 54px;
  }
  .pillars {
    min-height: 340px;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    margin-top: -70px;
    padding: 18px;
  }
  .pillars > div {
    padding: 17px 1px;
    gap: 11px;
  }
  .pillars > div + div,
  .pillars > div:nth-child(n + 3) {
    border: 0;
  }
  .pillars .dot {
    width: 17px;
    height: 17px;
    box-shadow: none;
  }
  .pillars strong {
    font-size: 18px;
  }
  .pillars small {
    font-size: 12px;
    line-height: 1.45;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .section h2 {
    font-size: 35px;
    margin-bottom: 12px;
  }
  .product h2,
  .journey h2 {
    font-size: 32px;
  }
  .subhead {
    font-size: 17px;
    margin-bottom: 28px;
  }
  .screen.large {
    padding: 12px;
  }
  .screen-label {
    right: 12px;
    bottom: 7px;
    padding: 3px 11px;
    font-size: 11px !important;
  }
  .screen-pair {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
  }
  .screen-pair .screen {
    padding: 7px;
    border-radius: 17px;
  }
  .screen-pair figcaption {
    font-size: 12px;
    margin: 0 0 9px;
  }
  .screen-pair figcaption span {
    margin-left: 3px;
  }
  .product > .wrap > .caption {
    display: none;
  }
  .features {
    padding-top: 78px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
  }
  .feature {
    min-height: 138px;
    padding: 14px;
    border-radius: 17px;
  }
  .feature-num {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 13px;
  }
  .feature h3 {
    font-size: 14px;
    line-height: 1.25;
    margin: 20px 0 7px;
  }
  .feature p {
    font-size: 12px;
    line-height: 1.3;
  }
  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 37px;
  }
  .journey-steps li {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 80px;
    padding: 14px;
    border: 1px solid var(--stroke);
    border-radius: 18px;
    background: var(--glass);
  }
  .journey-steps li > span {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: #9bc2ff;
    font-size: 24px;
  }
  .journey-steps h3 {
    font-size: 15px;
    margin: 0;
  }
  .journey-steps p {
    display: none;
  }
  .price-grid {
    gap: 14px;
    margin-top: 34px;
  }
  .price {
    min-height: 170px;
    padding: 22px;
    border-radius: 18px;
  }
  .price h3 {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .price p {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .price .placeholder-price,
  .price ul,
  .price .badge {
    display: none;
  }
  .price .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }
  .pricing .subhead,
  .pricing .caption {
    display: none;
  }
  .activation {
    padding-top: 30px;
  }
  .activation-grid {
    padding: 0;
    gap: 14px;
    border: 0;
    background: none;
    box-shadow: none;
  }
  .activation-grid article {
    align-items: center;
    min-height: 82px;
    padding: 16px 18px;
  }
  .activation-grid article > span {
    font-size: 22px;
  }
  .activation-grid h3 {
    font-size: 15px;
    margin: 0;
  }
  .activation-grid p,
  .activation .caption {
    display: none;
  }
  .final-panel {
    min-height: 230px;
    padding: 45px 25px;
  }
  .final-panel h2 {
    font-size: 32px;
  }
  .final-panel .actions {
    margin-top: 28px;
  }
  .final-panel .button.secondary {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 620px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-planet {
    background-image:
      linear-gradient(
        180deg,
        rgba(9, 13, 19, 0.35),
        rgba(9, 13, 19, 0.53) 60%,
        #090d13 100%
      ),
      url("/assets/hero/earth-hero.webp");
  }
  .pillars {
    min-height: 360px;
  }
  .pillars strong {
    font-size: 16px;
  }
  .screen-pair figcaption {
    font-size: 10px;
  }
  .feature {
    padding: 12px;
  }
  .feature h3 {
    font-size: 13px;
  }
  .journey-steps li {
    gap: 10px;
    padding: 10px;
  }
  .journey-steps h3 {
    font-size: 13px;
  }
}

/* A compact floating header and a restrained depth cue in the supplied hero. */
.nav-shell {
  padding-block: 8px;
  background: linear-gradient(180deg, rgba(9, 13, 19, 0.7), rgba(9, 13, 19, 0));
  border: 0;
  backdrop-filter: none;
}
.nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #005afa, #80b2ff);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  pointer-events: none;
}
.nav {
  min-height: 72px;
  padding: 0 23px;
  border: 1px solid rgba(167, 200, 235, 0.22);
  border-radius: 19px;
  background: linear-gradient(
    135deg,
    rgba(35, 51, 68, 0.78),
    rgba(15, 24, 35, 0.82)
  );
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(235, 246, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.nav-shell.scrolled .nav {
  background: linear-gradient(
    135deg,
    rgba(27, 43, 61, 0.95),
    rgba(10, 18, 28, 0.96)
  );
  border-color: rgba(166, 204, 248, 0.35);
  box-shadow:
    0 15px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(235, 246, 255, 0.12);
}
.nav-links > a:not(.button) {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s;
}
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: #80b2ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links > a:not(.button):hover::after,
.nav-links > a.is-active:not(.button)::after {
  transform: scaleX(1);
}
.nav-links > a.is-active:not(.button) {
  color: #fff;
}
.hero-planet {
  transform-origin: center top;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 52% 45% at 76% 68%,
    rgba(0, 90, 250, 0.11),
    transparent 85%
  );
}
@media (max-width: 900px) {
  .nav {
    min-height: 56px;
    padding: 0 16px;
  }
  .js-ready .nav-links {
    top: 72px;
    left: 21px;
    right: 21px;
    border: 1px solid rgba(167, 200, 235, 0.25);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 35px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 620px) {
  .nav-shell {
    padding-block: 6px;
  }
  .nav {
    min-height: 60px;
  }
  .nav-toggle {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .js-ready .nav-links {
    top: 72px;
  }
}
