:root {
  color-scheme: light;
  --background: #f6f3ed;
  --foreground: #171717;
  --muted: #57534e;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
}

.page-shell {
  width: min(100% - 40px, 760px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.brand {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

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