:root {
  --bg: #0a0a0a;
  --ink: #d1fae5;
  --green: #22c55e;
  --rule: rgba(34, 197, 94, 0.3);
  --muted: rgba(209, 250, 229, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--rule); transition: color 0.2s, border-color 0.2s; }
a:hover, a:focus { border-bottom-color: var(--green); }

header {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
header a { border-bottom: none; color: var(--muted); }
header a:hover { color: var(--green); }

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
  margin: 0 auto;
  gap: 2.5rem;
  padding: 2rem 0;
  width: 100%;
}

.hero { text-align: center; }

.wordmark {
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 5rem);
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.05;
}

.tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--muted);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.06);
  color: var(--green);
  white-space: nowrap;
}

.positioning p {
  color: var(--muted);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.status {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 2rem;
  opacity: 0.6;
}
footer a { color: inherit; border-bottom: none; }
footer a:hover { color: var(--green); opacity: 1; }

.socials { margin-top: 0.4rem; font-size: 0.8rem; }

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .pill { font-size: 0.72rem; }
}
