* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #1b1b1b;
  color: #e3e3e3;
  font-family: system-ui, -apple-system, sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 18px;
  text-align: center;
}

/* keeps text readable on wide screens + feels intentional */
.card {
  width: 100%;
  max-width: 720px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.block {
  display: grid;
  gap: 10px;
  margin: 0;
}

p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.small { font-size: 14px; }
.tiny  { font-size: 12px; }

.muted {
  opacity: 0.75;
}

.divider {
  width: 120px;
  height: 1px;
  margin: 22px auto;
  background: rgba(227, 227, 227, 0.14);
}

.handle {
  display: inline-block;
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #e3e3e3;
}

.handle:hover {
  opacity: 0.85;
}

/* clear action without ruining minimal aesthetic */
.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(227, 227, 227, 0.22);
  text-decoration: none;
  color: #e3e3e3;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.cta:hover {
  border-color: rgba(227, 227, 227, 0.35);
}
