:root {
  --bg: #12120f;
  --card: #1b1b17;
  --rail: #ff5f45;
  --rail2: #f8cc33;
  --rail3: #44d38d;
  --text: #ece9dd;
  --muted: #b9b3a1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Mono", monospace;
  color: var(--text);
  background: linear-gradient(to right, #191914 0 4%, var(--bg) 4% 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 28px;
}

.app {
  width: min(980px, 92vw);
  margin: 2rem auto;
  border: 1px solid #3b3b31;
  background: #11110e;
}

.top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #2f2f28;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.r {
  background: var(--rail);
}

.y {
  background: var(--rail2);
}

.g {
  background: var(--rail3);
}

.title {
  margin-left: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero {
  padding: 1.2rem 1rem 0.8rem;
}

.prompt {
  color: #44d38d;
}

h1 {
  margin: 0.4rem 0 0.2rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
}

.desc {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.list {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.item {
  border: 1px solid #38382f;
  background: var(--card);
  padding: 0.9rem;
  transform: translateX(-12px);
  opacity: 0;
  animation: slide 0.55s ease forwards;
}

.item:nth-child(2) {
  animation-delay: 0.12s;
}

.item:nth-child(3) {
  animation-delay: 0.24s;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

h2 {
  margin: 0;
  font-size: 1.1rem;
}

.state {
  color: #44d38d;
  font-size: 0.8rem;
}

.item p {
  margin: 0.7rem 0 0.6rem;
  color: var(--muted);
  line-height: 1.55;
}

a {
  color: #77a9ff;
  text-underline-offset: 0.15rem;
}

.foot {
  border-top: 1px solid #2f2f28;
  padding: 0.7rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

@keyframes slide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--bg);
  }

  .app {
    width: 100%;
    margin: 0;
    min-height: 100vh;
  }
}
