:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #080a0f;
  color: #f7f8fb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 122, 45, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgba(84, 126, 255, 0.14), transparent 30rem),
    #080a0f;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 68vh;
  padding: clamp(5rem, 12vw, 9rem) 0 4rem;
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1.5rem;
  color: #aeb5c6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff7a2d;
  box-shadow: 0 0 0 6px rgba(255, 122, 45, 0.12);
}

h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  font-weight: 650;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.lede {
  max-width: 660px;
  margin: 2rem 0 3.5rem;
  color: #adb4c5;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

code {
  padding: 0.16rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9em;
}

.route {
  display: flex;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: rgba(15, 18, 27, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.route div {
  min-width: 190px;
  padding: 1.2rem 1.35rem;
}

.route small,
.route strong {
  display: block;
}

.route small {
  margin-bottom: 0.35rem;
  color: #747d91;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.arrow {
  display: grid;
  place-items: center;
  color: #ff7a2d;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.details article {
  min-height: 230px;
  padding: 2rem;
}

.details article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.number {
  color: #ff7a2d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

h2 {
  margin: 3rem 0 0.8rem;
  font-size: 1.45rem;
}

.details p {
  max-width: 280px;
  margin: 0;
  color: #9199aa;
  line-height: 1.6;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 3rem;
  color: #747d91;
  font-size: 0.8rem;
}

footer p {
  margin: 0;
}

#status {
  color: #b8c0d0;
}

@media (max-width: 820px) {
  .route {
    display: grid;
    width: 100%;
  }

  .arrow {
    display: none;
  }

  .route div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .details {
    grid-template-columns: 1fr;
  }

  .details article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  footer {
    gap: 1rem;
    flex-direction: column;
  }
}
