:root {
  --bg: #0b0d10;
  --fg: #e8e8ea;
  --muted: #9aa0a6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 100vh;
  gap: 2rem;
  padding: 3rem;
}

.hero-image {
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}

.tagline {
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-text p {
  margin-bottom: 1.25rem;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-text {
    text-align: left;
  }
}

