:root {
  color-scheme: dark;
  --bg: #0a0d10;
  --bg-soft: #11161b;
  --line: #23303a;
  --text: #d9e1e8;
  --muted: #8b98a5;
  --accent: #8ee3a1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(142, 227, 161, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0d10 0%, #0d1116 100%);
  color: var(--text);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 12px;
}

h1,
h2,
p,
ul,
pre {
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
}

.intro {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.panel {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 22, 27, 0.84);
  backdrop-filter: blur(8px);
}

.panel h2 {
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel p {
  color: var(--muted);
  line-height: 1.75;
}

.posts {
  list-style: none;
  padding: 0;
}

.posts li {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(35, 48, 58, 0.9);
}

.posts li:first-child {
  border-top: 0;
  padding-top: 0;
}

.date,
.status {
  color: var(--muted);
  font-size: 13px;
}

.terminal pre {
  overflow-x: auto;
  padding: 14px;
  border-radius: 12px;
  background: #090c0f;
  color: var(--text);
  border: 1px solid rgba(35, 48, 58, 0.9);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .page {
    padding: 40px 0 56px;
  }

  .panel {
    padding: 18px;
    border-radius: 16px;
  }

  .posts li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
