:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #555555;
  --subtle: #888888;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(120px, 18vh, 220px) 24px 80px;
}

.content {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(2.25rem, 5vw, 2.625rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.lead {
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
}

.supporting {
  max-width: 440px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-block {
  margin-bottom: 80px;
}

.label {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom: 1px solid var(--text);
}

footer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--subtle);
}

@media (max-width: 480px) {
  .page {
    padding: 72px 20px 48px;
  }

  .contact-block {
    margin-bottom: 64px;
  }

  .lead {
    font-size: 1rem;
  }

  .supporting {
    font-size: 0.96875rem;
  }
}