/* verification.css */
/* Neutral, infrastructure-grade styling */

:root {
  --text-primary: #111111;
  --text-secondary: #555555;
  --border-muted: #e5e5e5;
  --background: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

main.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1.2rem 0;
}

ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
  padding: 0;
}

li {
  margin-bottom: 0.4rem;
}

strong {
  font-weight: 600;
}

section {
  margin-bottom: 2.5rem;
}

hr {
  border: none;
  border-top: 1px solid var(--border-muted);
  margin: 3rem 0;
}