:root {
  --bg: #060d09;
  --ink: #c8d8cc;
  --green: #4ade80;
  --amber: #fbbf24;
  --gray: #7e9285;
  --rule: rgba(74, 222, 128, 0.2);
}
* { 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: "JetBrains Mono", ui-monospace, "Menlo", monospace;
  font-size: 1.0625rem;
  line-height: 1.6;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem) 2rem;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(74, 222, 128, 0.025) 0,
    rgba(74, 222, 128, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 0;
}
header, main, footer { position: relative; z-index: 1; }
a { color: var(--green); text-decoration: none; border-bottom: 1px dotted var(--rule); transition: color 0.2s ease, border-color 0.2s ease; }
a:hover, a:focus { color: var(--ink); border-bottom-color: var(--green); }
header {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7;
}
header a { border-bottom: none; }
.status-chip { color: var(--amber); font-size: 0.72rem; }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 44rem; margin: 0 auto; gap: 2.5rem; padding: 2rem 0; width: 100%; }
.hero { text-align: center; }
.wordmark {
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3.25rem);
  letter-spacing: -0.01em;
  color: var(--green);
  line-height: 1.1;
}
.bracket { color: var(--amber); font-weight: 500; }
.tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-top: 1.25rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.tagline::before { content: "// "; color: var(--amber); }
.positioning p { text-align: center; max-width: 38rem; margin: 0 auto; color: var(--ink); }
.status { text-align: center; opacity: 0.85; font-size: 0.95rem; }
footer { text-align: center; font-size: 0.78rem; opacity: 0.55; padding-top: 2rem; }
.socials { margin-top: 0.5rem; font-size: 0.78rem; }
@media (max-width: 520px) {
  body { font-size: 0.95rem; }
  header { flex-direction: column; gap: 0.4rem; }
}
