:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #2563eb;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.brand h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tagline {
  margin-top: 0.75rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
}

.intro p {
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 52ch;
}

.contact {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.contact p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
