.landing-page {
  --landing-ink: #070b2e;
  --landing-green: #a7ff6e;
  --landing-blue: #9cd7ff;
  --landing-paper: #f5f6f0;
  min-height: 100dvh;
  color: var(--landing-ink);
  background: var(--landing-paper);
  overflow: hidden;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page a {
  text-decoration: none;
}

.landing-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 16px clamp(20px, 3.2vw, 52px);
  color: #fff;
  transition: color 180ms ease, background-color 180ms ease;
}

.landing-nav.is-scrolled {
  color: var(--landing-ink);
  background: rgba(245, 246, 240, 0.88);
  border-bottom: 1px solid rgba(7, 11, 46, 0.12);
  backdrop-filter: blur(16px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
  color: inherit;
  font-family: var(--font-manrope), sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.landing-brand img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.landing-nav-note {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.landing-login {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding: 0 16px 0 18px;
  color: var(--landing-ink);
  background: var(--landing-green);
  border: 1px solid var(--landing-green);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.landing-login:hover,
.landing-login:focus-visible {
  color: var(--landing-green);
  background: var(--landing-ink);
  transform: translateY(-2px);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 100svh;
  background: var(--landing-ink);
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 132px clamp(24px, 4.6vw, 76px) clamp(52px, 7vw, 106px);
  color: #fff;
}

.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--landing-green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.landing-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(58px, 8.2vw, 132px);
  font-weight: 600;
  line-height: 0.84;
}

.landing-hero h1 em {
  color: var(--landing-green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.landing-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(38px, 6vh, 72px);
}

.landing-intro p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
}

.landing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 190px;
  min-height: 54px;
  padding: 0 18px 0 20px;
  color: var(--landing-ink);
  background: var(--landing-green);
  border: 1px solid var(--landing-green);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.landing-primary:hover,
.landing-primary:focus-visible {
  color: var(--landing-green);
  background: transparent;
  transform: translateY(-3px);
}

.landing-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 11, 46, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 11, 46, 0.08) 1px, transparent 1px),
    var(--landing-green);
  background-size: 52px 52px;
  perspective: 1000px;
}

.landing-stage::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  content: "";
  background: linear-gradient(transparent, rgba(7, 11, 46, 0.16));
  pointer-events: none;
}

.landing-orbit {
  position: absolute;
  border: 1px solid rgba(7, 11, 46, 0.22);
  border-radius: 50%;
}

.landing-orbit-one {
  width: min(44vw, 650px);
  aspect-ratio: 1;
}

.landing-orbit-two {
  width: min(31vw, 450px);
  aspect-ratio: 1;
}

.landing-mark {
  position: absolute;
  top: 15%;
  right: 9%;
  opacity: 0.14;
  transform: rotate(8deg);
}

.landing-mark img {
  width: clamp(120px, 15vw, 240px);
  height: auto;
  border-radius: 8px;
  filter: grayscale(1) contrast(2);
}

.landing-product {
  position: relative;
  z-index: 3;
  width: min(76%, 470px);
  min-height: 520px;
  padding: 22px;
  color: #fff;
  background: rgba(7, 11, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 28px 40px 0 rgba(7, 11, 46, 0.12), 0 34px 80px rgba(7, 11, 46, 0.28);
  transform: rotate(-4deg);
  transition: transform 240ms ease-out;
}

.landing-product-top,
.landing-product-route,
.landing-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-product-top {
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-product-top div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-status-dot {
  width: 7px;
  height: 7px;
  background: var(--landing-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(167, 255, 110, 0.12);
}

.landing-product-city {
  padding: 50px 0 54px;
}

.landing-product-city span {
  color: var(--landing-green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-product-city strong {
  display: block;
  margin-top: 9px;
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 500;
  line-height: 1;
}

.landing-product-city p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.landing-product-route {
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-manrope), sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.landing-route-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.landing-route-line i {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 8px;
  height: 8px;
  background: var(--landing-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.landing-product-bottom {
  align-items: stretch;
  gap: 8px;
  padding-top: 28px;
}

.landing-product-bottom div {
  flex: 1;
}

.landing-product-bottom span,
.landing-product-bottom strong {
  display: block;
}

.landing-product-bottom span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  text-transform: uppercase;
}

.landing-product-bottom strong {
  margin-top: 7px;
  font-size: 14px;
}

.landing-stage-note {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 50px);
  bottom: clamp(24px, 5vh, 60px);
  margin: 0;
  color: var(--landing-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.landing-marquee {
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.landing-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-height: 72px;
  animation: landing-marquee 26s linear infinite;
}

.landing-marquee-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  padding-right: clamp(56px, 7vw, 104px);
}

.landing-marquee span {
  font-family: var(--font-manrope), sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.landing-marquee i {
  color: var(--landing-green);
  font-style: normal;
}

.landing-close {
  position: relative;
  display: grid;
  grid-template-columns: 0.45fr 1.25fr auto;
  align-items: end;
  gap: 40px;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 5vw, 80px);
  background: var(--landing-paper);
}

.landing-close p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-close h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.92;
}

.landing-close > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 170px;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  background: var(--landing-ink);
  border: 1px solid var(--landing-ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.landing-close > a:hover,
.landing-close > a:focus-visible {
  color: var(--landing-ink);
  background: var(--landing-green);
  transform: translateY(-3px);
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 20px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(7, 11, 46, 0.18);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.landing-footer span:nth-child(2) {
  text-align: center;
}

.landing-footer > span:last-child {
  text-align: right;
}

@keyframes landing-marquee {
  to {
    transform: translateX(-25%);
  }
}

.landing-capabilities {
  padding: clamp(90px, 11vw, 164px) clamp(24px, 5vw, 80px);
  background: var(--landing-paper);
}

.landing-section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.2fr 0.55fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.landing-section-heading p,
.landing-roles-copy > p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-section-heading h2,
.landing-roles-copy h2 {
  margin: 0;
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(45px, 6vw, 90px);
  font-weight: 500;
  line-height: 0.94;
}

.landing-section-heading h2 em {
  color: #4961e7;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.landing-section-heading > span,
.landing-roles-copy > span {
  color: rgba(7, 11, 46, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: clamp(22px, 2.2vw, 34px);
  background: #fff;
  border: 1px solid rgba(7, 11, 46, 0.14);
  border-radius: 6px;
}

.landing-feature-wide {
  grid-column: span 2;
}

.landing-feature-number {
  font-size: 11px;
  font-weight: 700;
}

.landing-feature-symbol {
  align-self: flex-end;
  color: var(--landing-ink);
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 300;
  line-height: 1;
}

.landing-feature h3 {
  margin: 0 0 12px;
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.05;
}

.landing-feature p {
  max-width: 520px;
  margin: 0;
  color: rgba(7, 11, 46, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.landing-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 140px;
  margin: 34px 0;
}

.landing-calendar span {
  display: grid;
  place-items: center;
  height: 50%;
  background: rgba(7, 11, 46, 0.06);
  border-top: 1px solid rgba(7, 11, 46, 0.18);
  font-size: 10px;
  font-weight: 700;
}

.landing-calendar span:nth-child(2),
.landing-calendar span:nth-child(4) {
  height: 72%;
}

.landing-calendar .is-active {
  height: 100%;
  color: var(--landing-ink);
  background: var(--landing-green);
  border-color: var(--landing-ink);
}

.landing-feature-blue {
  background: var(--landing-blue);
}

.landing-feature-dark {
  color: #fff;
  background: var(--landing-ink);
}

.landing-feature-dark .landing-feature-symbol {
  color: var(--landing-green);
}

.landing-feature-dark p {
  color: rgba(255, 255, 255, 0.64);
}

.landing-feature-green {
  background: var(--landing-green);
}

.landing-now {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  margin: 40px 0;
  padding: 0 22px;
  background: var(--landing-ink);
  border-radius: 4px;
  color: #fff;
}

.landing-now span {
  color: var(--landing-green);
  font-size: 10px;
  font-weight: 700;
}

.landing-now strong {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 500;
}

.landing-now b {
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 500;
}

.landing-roles {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 9vw, 140px);
  padding: clamp(90px, 11vw, 164px) clamp(24px, 5vw, 80px);
  color: #fff;
  background: var(--landing-ink);
}

.landing-roles-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.landing-roles-copy > p {
  margin-bottom: 28px;
  color: var(--landing-green);
}

.landing-roles-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
}

.landing-roles-copy > span {
  display: block;
  max-width: 460px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
}

.landing-role-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-role-list article {
  display: grid;
  grid-template-columns: 44px minmax(145px, 0.52fr) minmax(210px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.landing-role-list article:hover {
  padding-inline: 18px;
  color: var(--landing-ink);
  background: var(--landing-green);
}

.landing-role-list span {
  color: var(--landing-green);
  font-size: 11px;
  font-weight: 700;
}

.landing-role-list article:hover span {
  color: var(--landing-ink);
}

.landing-role-list h3,
.landing-role-list p {
  margin: 0;
}

.landing-role-list h3 {
  font-family: var(--font-manrope), sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}

.landing-role-list p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.landing-role-list article:hover p {
  color: rgba(7, 11, 46, 0.68);
}

.landing-role-list b {
  font-size: 10px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .landing-nav {
    grid-template-columns: 1fr 1fr;
  }

  .landing-nav-note {
    display: none;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy {
    min-height: 82svh;
  }

  .landing-stage {
    min-height: 760px;
  }

  .landing-orbit-one {
    width: min(86vw, 650px);
  }

  .landing-orbit-two {
    width: min(64vw, 450px);
  }

  .landing-product {
    width: min(66%, 470px);
  }

  .landing-section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .landing-section-heading > span {
    grid-column: 2;
  }

  .landing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-roles {
    grid-template-columns: 1fr;
  }

  .landing-roles-copy {
    position: static;
  }

  .landing-close {
    grid-template-columns: 1fr auto;
  }

  .landing-close p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .landing-nav {
    min-height: 70px;
    padding: 12px 16px;
  }

  .landing-brand span {
    display: none;
  }

  .landing-brand img {
    width: 34px;
    height: 34px;
  }

  .landing-login {
    min-height: 42px;
    gap: 16px;
    padding: 0 13px 0 15px;
  }

  .landing-hero-copy {
    min-height: 78svh;
    padding: 112px 20px 46px;
  }

  .landing-hero h1 {
    font-size: clamp(54px, 18vw, 84px);
    line-height: 0.88;
  }

  .landing-intro {
    display: block;
    margin-top: 36px;
  }

  .landing-intro p {
    font-size: 16px;
  }

  .landing-primary {
    width: 100%;
    margin-top: 28px;
  }

  .landing-stage {
    min-height: 580px;
  }

  .landing-mark {
    top: 8%;
  }

  .landing-product {
    width: calc(100% - 64px);
    min-height: 440px;
    padding: 18px;
    box-shadow: 16px 22px 0 rgba(7, 11, 46, 0.12), 0 24px 50px rgba(7, 11, 46, 0.24);
  }

  .landing-product-city {
    padding: 40px 0 42px;
  }

  .landing-product-city strong {
    font-size: 42px;
  }

  .landing-stage-note {
    display: none;
  }

  .landing-marquee-track {
    min-height: 62px;
  }

  .landing-capabilities,
  .landing-roles {
    padding-inline: 20px;
  }

  .landing-section-heading {
    display: block;
  }

  .landing-section-heading h2 {
    margin-top: 28px;
  }

  .landing-section-heading > span {
    display: block;
    margin-top: 24px;
  }

  .landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature,
  .landing-feature-wide {
    grid-column: auto;
    min-height: 340px;
  }

  .landing-calendar {
    min-height: 110px;
  }

  .landing-now {
    padding: 0 16px;
  }

  .landing-roles {
    gap: 56px;
  }

  .landing-role-list article {
    grid-template-columns: 30px 1fr auto;
    gap: 14px;
    padding: 24px 0;
  }

  .landing-role-list article:hover {
    padding-inline: 12px;
  }

  .landing-role-list p {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .landing-close {
    display: block;
    padding: 90px 20px 74px;
  }

  .landing-close h2 {
    margin-top: 28px;
    font-size: clamp(48px, 15vw, 72px);
  }

  .landing-close > a {
    width: 100%;
    margin-top: 40px;
  }

  .landing-footer {
    grid-template-columns: 1fr 1fr;
    min-height: 76px;
    padding: 18px 20px;
  }

  .landing-footer span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-marquee div {
    animation-play-state: paused;
  }

  .landing-login,
  .landing-primary,
  .landing-product,
  .landing-close > a {
    transition: none;
  }
}
