* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: var(--ink);
}
.project-brand,
.back-link {
  color: var(--white);
  text-decoration: none;
}
.project-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}
.project-brand img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
}
.project-brand em {
  color: var(--cyan);
  font-style: normal;
}
.back-link {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.back-link:hover {
  color: var(--cyan);
}
.project-label,
.soon-panel > span {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
.project-label {
  margin: 0 0 1.4rem;
  color: var(--cyan);
}
.project-label span {
  color: var(--orange);
}
h1 {
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-wrap: balance;
}
.soon-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}
.soon-panel > span {
  color: var(--muted);
}
.soon-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.7rem, 10vw, 8.5rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
}
@media (max-width: 560px) {
  .project-nav {
    align-items: flex-start;
    padding-block: 1rem;
  }
  .back-link {
    max-width: 12rem;
    text-align: right;
    line-height: 1.5;
  }
  h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }
}
