:root {
  color-scheme: dark;
  --paper: #101214;
  --ink: #f2efe8;
  --muted: #9fa6aa;
  --line: rgba(242, 239, 232, 0.16);
  --accent: #8fc4af;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 74% 16%, rgba(143, 196, 175, 0.1), transparent 32rem),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

main {
  width: min(100% - 40px, 1120px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header, footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

header { border-bottom: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(143, 196, 175, 0.12);
}

.hero {
  align-self: center;
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 11vw, 142px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.lede {
  max-width: 600px;
  margin: 38px 0 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.rule {
  width: min(100%, 760px);
  height: 1px;
  margin: 48px 0 28px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.inquiry {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

a {
  color: var(--ink);
  text-underline-offset: 5px;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
}

a:hover { color: var(--accent); }

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

@media (max-width: 620px) {
  main { width: min(100% - 32px, 1120px); }
  header, footer { flex-direction: column; }
  .hero { padding: 62px 0; }
  h1 { font-size: clamp(54px, 19vw, 90px); }
}
