:root {
  --bg: #0c0d0f;
  --bg-accent: #15171b;
  --fg: #f2f2f0;
  --muted: #9a9ca3;
  --accent: #d8ff3e;
  --border: #26282e;
}

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

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, var(--bg-accent), var(--bg));
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: #0c0d0f;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.35em;
  font-size: 0.95rem;
}

.hero-content {
  padding: 4rem 0;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.lede {
  color: #b9bbc2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  max-width: 34em;
  margin-bottom: 2.25rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: #d6d7db;
  white-space: nowrap;
}

.foot {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  color: #6f7178;
  font-size: 0.85rem;
}
