:root {
  --bg: #f7f3ee;
  --card: #fffaf4;
  --text: #151515;
  --muted: #777;
  --line: #e8ded3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, var(--bg) 55%, #eee3d8 100%);
  color: var(--text);
  line-height: 1.75;
}
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 18px 72px;
}
.hero, .card {
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(33, 24, 14, 0.08);
}
.hero {
  text-align: center;
  margin-top: 12vh;
}
.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 12px;
}
h1 {
  margin: 0 0 12px;
  font-size: 36px;
  letter-spacing: -0.04em;
}
h2 {
  margin: 28px 0 8px;
  font-size: 22px;
}
h3 {
  margin: 16px 0 4px;
  font-size: 17px;
}
p, li {
  font-size: 16px;
}
a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 48px;
  border-radius: 999px;
  background: #111;
  color: white;
  text-decoration: none;
}
.muted {
  color: var(--muted);
}
.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 190, 80, 0.16);
  border: 1px solid rgba(190, 120, 0, 0.22);
}
@media (max-width: 560px) {
  .hero, .card { padding: 24px; border-radius: 24px; }
  h1 { font-size: 30px; }
}
