:root {
  --bg: #f7f7f5;
  --ink: #17191d;
  --muted: #63666d;
  --line: #e2e1db;
  --accent: #3b4cc0;
  --accent-ink: #2b3aa0;
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  line-height: 1.5;
}

.wrap {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 44px 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 40px rgba(20,22,30,0.06);
}

.brand {
  display: flex;
  align-items: center;
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.wordmark .dim { color: var(--muted); font-weight: 600; }

.rule {
  height: 3px;
  width: 48px;
  border-radius: 999px;
  background: var(--accent);
  margin: 28px 0 24px;
}

h1 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.lede {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
}

.lede strong { color: var(--ink); font-weight: 700; }

.actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 11px;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--accent-ink); }

.badge {
  display: inline-block;
  background: #eef0fb;
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 999px;
}

.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.link:hover { text-decoration: underline; }

.foot {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

.foot .copy { margin-top: 6px; opacity: 0.85; }

@media (max-width: 480px) {
  .wrap { padding: 36px 26px 30px; border-radius: 14px; }
  h1 { font-size: 25px; }
}
