* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f2;
  color: #1f2933;
}
.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}
.card {
  width: min(760px, 100%);
  background: white;
  border: 1px solid #deded8;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 16px 45px rgba(0,0,0,.06);
}
.eyebrow {
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.6;
}
p {
  line-height: 1.65;
}
.notice {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #d9d9d2;
  border-radius: 10px;
  background: #fafaf7;
  font-size: .95rem;
}
