:root {
  --bg: #0b0b0c;
  --bg-elev: #141416;
  --text: #f2f3f5;
  --muted: #b6b9c0;
  --accent: #ffffff;
  --maxw: 900px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 8px;
}

.logo {
  width: 120px;
  height: auto;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 48px;
}

.hero {
  text-align: center;
  margin: 12px 0 24px;
}

.hero h1 {
  margin: 0 0 6px;
  font-size: 48px;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 12px 0;
}

section h2 {
  margin: 18px 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

li {
  margin: 6px 0;
}

.cta {
  margin-top: 22px;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 120ms ease, border-color 120ms ease;
}

.button:hover {
  opacity: 0.92;
}

.button.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #2a2b2e;
}

.button.outline:hover {
  border-color: #3a3b3e;
}

.socials {
  margin-top: 12px;
  text-align: center;
}

.socials .button {
  margin: 6px 8px 0;
}

.site-footer {
  border-top: 1px solid #1f2022;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

@media (min-width: 880px) {
  .hero h1 {
    font-size: 56px;
  }
}
