:root {
  color-scheme: dark;
  --ink: #f1ede3;
  --muted: #aaa69d;
  --paper: #11110f;
  --accent: #df573d;
  --line: #34332e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgb(223 87 61 / 10%), transparent 30rem),
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

main {
  width: min(100%, 70rem);
  margin: auto 0;
  padding: 8vh 0;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 15vw, 11rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.16vw, 3px) var(--ink);
}

.intro {
  max-width: 35rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.rule {
  width: min(100%, 35rem);
  height: 1px;
  margin: 2rem 0 1rem;
  background: var(--line);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1rem rgb(223 87 61 / 60%);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: 0.3em;
}

a:hover,
a:focus-visible {
  color: var(--ink);
}

@media (max-width: 32rem) {
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  main {
    animation: enter 700ms ease-out both;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(1rem);
    }
  }
}
