:root {
  --bg: #F4F2EA;
  --ink: #0B0B0B;
  --muted: #6B6B6B;
  --line: rgba(11,11,11,.15);
  --radius: 26px;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.panel {
  width: min(720px, 100%);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px 44px;
  background: rgba(255,255,255,0.35);
}

.logo {
  height: 52px;
  width: auto;
  margin: 0 0 30px;
}

/* Catch phrase: less bold, more sober */
.headline {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  font-weight: 500;          /* was heavier; 500 is sober */
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.lead {
  font-size: 16px;
  color: rgba(11,11,11,.78);
  margin: 0 auto 26px;
  max-width: 60ch;
}

.stage {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.25);
}

.ctaRow {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform .12s ease, opacity .12s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 600;
}

.cta--ghost:hover {
  opacity: 0.9;
}

footer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 18px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}