:root {
  color-scheme: light dark;
  --bg: #f6f4ef;
  --text: #171717;
  --muted: #66645e;
  --line: #d9d5cc;
  --accent: #0f766e;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111111;
    --text: #f4f1ea;
    --muted: #a9a49a;
    --line: #2d2b27;
    --accent: #5eead4;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.panel {
  width: min(100%, 520px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
  font-weight: 650;
}

.copy {
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: var(--accent);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
