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

:root {
  --bg: #0b0b0d;
  --text: #ececef;
  --muted: #8e8e98;
  --border: #222228;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(640px, 92%);
  margin-inline: auto;
}

/* Header */
header {
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
main {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero {
  width: 100%;
  padding: 3rem 0 5rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-image {
  display: block;
  width: min(560px, 94%);
  height: auto;
  margin: 0 auto 1.75rem;
  border-radius: 6px;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 26rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 0 4rem;
  }
}
