:root {
  --ink: #f1eadb;
  --muted: #a7a093;
  --dim: #746f66;
  --void: #06070a;
  --deep: #0b0f16;
  --line: rgba(241, 234, 219, 0.18);
  --glow: rgba(174, 198, 255, 0.13);
  --max-width: 680px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--void);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    url("assets/dark-observatory-site.png"),
    linear-gradient(180deg, var(--deep) 0%, var(--void) 60%, #020305 100%);
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background-image:
    radial-gradient(circle, rgba(241, 234, 219, 0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(174, 198, 255, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(241, 234, 219, 0.35) 0 1px, transparent 1.4px);
  background-position:
    8vw 16vh,
    72vw 24vh,
    42vw 72vh;
  background-size:
    23rem 19rem,
    31rem 27rem,
    19rem 23rem;
  opacity: 0.38;
}

body::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 68%);
  opacity: 0.45;
}

.site-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(100% - 2rem, var(--max-width));
  min-height: 100vh;
  margin: 0 auto;
  padding: 5rem 0;
}

.site-shell::before {
  width: 4.5rem;
  height: 1px;
  margin-bottom: 2rem;
  background: var(--line);
  content: "";
}

.eyebrow,
.future-work span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0.7rem 0 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.5rem;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 0.08em 0.22em rgba(2, 3, 5, 0.42);
}

.bio {
  max-width: 38rem;
  margin: 0;
  color: rgba(241, 234, 219, 0.8);
  font-size: 1.16rem;
  line-height: 1.75;
  text-shadow: 0 0.08em 0.55em rgba(2, 3, 5, 0.78);
}

.future-work {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: baseline;
  margin-top: 3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.future-work a {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.future-work a:hover,
.future-work a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(241, 234, 219, 0.45);
  text-underline-offset: 0.28em;
}

.future-work a[aria-disabled="true"] {
  cursor: default;
}

@media (max-width: 900px) {
  body {
    background-position: right center;
  }
}

@media (max-width: 520px) {
  .site-shell {
    align-content: end;
    padding: 4rem 0 3rem;
  }

  h1 {
    font-size: 4.65rem;
  }

  .future-work {
    display: grid;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 4.1rem;
  }

  .bio {
    font-size: 1.05rem;
  }
}
