:root {
  --ink: #0b0b0b;
  --paper: #ffffff;
  --accent: #0789ea;
  --muted: #6b6b6b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  max-width: 720px;
  margin: 0 auto;
}

header.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

header.site-header .brand-icon {
  height: 30px;
  width: 30px;
  border-radius: 7px;
  display: block;
}

header.site-header .brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

main {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero {
  padding: 64px 0 96px;
  text-align: center;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 40px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.cta {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
  background: var(--ink);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}

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

footer.site-footer {
  padding: 40px 24px 56px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

footer.site-footer a { color: var(--muted); text-decoration: underline; }
footer.site-footer a:hover { color: var(--accent); }
