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

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(51, 120, 203, 0.18), transparent 33rem),
    linear-gradient(155deg, #061521 0%, #071c2a 58%, #09263a 100%);
}

body::after {
  position: fixed;
  inset: auto 0 0;
  height: 38vh;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(4, 16, 25, 0.72)),
    radial-gradient(ellipse at 35% 100%, rgba(61, 119, 204, 0.14), transparent 45%);
}

main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 4rem 1.5rem;
}

.hero {
  width: min(100%, 66rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(4rem, 10vh, 8rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.brand img {
  width: 3.5rem;
  height: 3.5rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: #75b4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.lede {
  max-width: 43rem;
  margin: 2.1rem 0 3rem;
  color: #c6d4de;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(151, 192, 224, 0.14);
  border-radius: 1.1rem;
  background: rgba(151, 192, 224, 0.14);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.18);
}

.path div {
  display: grid;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 1.5rem;
  background: rgba(8, 28, 42, 0.88);
}

.path strong {
  color: #e3eef8;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.path span {
  align-self: end;
  color: #9fb2c0;
  line-height: 1.5;
}

.status {
  margin: 1.4rem 0 0;
  color: #8197a6;
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  main {
    padding-block: 2rem 3rem;
  }

  .brand {
    margin-bottom: 4rem;
  }

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

  .path div {
    min-height: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
