:root {
  --bg: #ffffff;
  --ink: #14171a;
  --ink-soft: #5b6168;
  --rule: #e8eaed;
  --accent: #14171a;
  --max: 680px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 40px 0;
}

.wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 96px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 40px;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36em;
}

.contact {
  margin: 8px 0 0;
}

.button {
  display: inline-block;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.button:hover {
  opacity: 0.85;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0f11;
    --ink: #f2f3f4;
    --ink-soft: #9aa1a8;
    --rule: #23272b;
  }
}
