:root {
  --ink: #11110f;
  --paper: #f2efe7;
  --line: rgba(17, 17, 15, 0.25);
  --dj: #ff3bd4;
  --fit: #d6ff3a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(17, 17, 15, 0.3) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
}

main,
footer {
  position: relative;
  z-index: 1;
}

main {
  width: min(72rem, calc(100% - 2rem));
  margin: auto;
  padding: clamp(2rem, 7vw, 5rem) 0;
}

.intro {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 9vw, 7rem);
}

.eyebrow,
.lead,
footer,
.number,
.path small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: 0.72;
  letter-spacing: -0.09em;
  font-weight: 900;
}

.lead {
  margin: 1rem 0 0;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
}

.paths {
  border-top: 2px solid var(--ink);
}

.path {
  min-height: 8rem;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  text-decoration: none;
  transition: padding 160ms ease, background 160ms ease;
}

.path:hover,
.path:focus-visible {
  padding-inline: 1rem;
}

.path-dj:hover,
.path-dj:focus-visible {
  background: var(--dj);
}

.path-fit:hover,
.path-fit:focus-visible {
  background: var(--fit);
}

.path:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.number {
  font-size: 0.72rem;
}

.path-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.path strong {
  font-size: clamp(2.3rem, 8vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.path small {
  font-size: 0.8rem;
}

.arrow {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

footer {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 36rem) {
  h1 {
    line-height: 0.78;
  }

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

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .path {
    transition: none;
  }
}
