:root {
  --bg: #0a0a0a;
  --fg: #e8e6e3;
  --dim: #6e6c69;
  --line: #1f1f1f;
  --accent: #7dd3fc;
  --green: #10b981;
  --red: #ef4444;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; }

/* ─── header ──────────────────────────────────────────────── */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 4rem;
}

.brand {
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--fg); }

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease;
}
.market-chip:hover { border-color: var(--dim); }
.market-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dim);
  box-shadow: 0 0 0 0 transparent;
}
.market-chip.open .dot {
  background: var(--green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
.market-chip.closed .dot { background: var(--red); }

/* ─── hero / identity ─────────────────────────────────────── */
.hero { flex: 1; }

.name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.rule {
  width: 80px;
  height: 1px;
  background: var(--fg);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.identity {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 300;
  margin-bottom: 5rem;
  max-width: 38rem;
  color: var(--fg);
}

/* ─── triptych ────────────────────────────────────────────── */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 720px) {
  .triptych { grid-template-columns: 1fr; gap: 2.5rem; }
}

.triptych article {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.triptych p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg);
}

/* ─── currently strip ─────────────────────────────────────── */
.currently { margin-bottom: 5rem; }
.currently ul {
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}
.currently li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--line);
}
.currently li:first-child { border-top: 1px dotted var(--line); }
.row-label { color: var(--dim); }
.row-value { color: var(--fg); }

/* ─── footer ──────────────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--dim);
  display: flex;
  gap: 0.75rem;
}
.footer a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--bg); }
