* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-header {
  width: 100%;
  padding: 48px 24px 12px;
  display: flex;
  justify-content: center;
}

.logo {
  width: 96px;
  height: 96px;
}

.hero {
  max-width: 720px;
  padding: 32px 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
}

.domains {
  font-size: 1rem;
  color: #0f172a;
}

.site-footer {
  margin-top: auto;
  width: 100%;
  padding: 24px;
  font-size: 0.95rem;
  color: #64748b;
}
