:root {
  color-scheme: dark;
  --bg: #101113;
  --fg: #f3efe7;
  --muted: #a8a098;
  --line: rgba(243, 239, 231, 0.18);
  --accent: #d5a84f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  background:
    linear-gradient(120deg, rgba(213, 168, 79, 0.10), transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(243, 239, 231, 0.08), transparent 30%),
    var(--bg);
  color: var(--fg);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
}

.intro {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--accent);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.94;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72d67a;
  box-shadow: 0 0 18px rgba(114, 214, 122, 0.8);
}

@media (max-width: 640px) {
  .page {
    min-height: 100svh;
    padding: 24px;
    place-items: end start;
  }

  h1 {
    font-size: 52px;
  }
}
