:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #f4f0e6;
  background: #101411;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 75% 15%, rgb(171 225 171 / 12%), transparent 30rem),
    linear-gradient(135deg, #101411, #171d18);
}

main {
  width: min(70rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 9rem) 0;
}

header {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a9dda7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.intro {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #aeb8af;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #465149;
  list-style: none;
}

li {
  border-bottom: 1px solid #465149;
}

a {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  color: inherit;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-decoration: none;
}

a span:first-child {
  overflow-wrap: anywhere;
}

a span:last-child {
  color: #a9dda7;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

a:hover span:last-child,
a:focus-visible span:last-child {
  transform: translateX(0.35rem);
}

a:focus-visible {
  outline: 2px solid #a9dda7;
  outline-offset: 0.5rem;
}
