:root {
  --bg: #0f1318;
  --surface: #171d24;
  --surface-2: #1f2730;
  --text: #ebebe9;
  --muted: #afaea9;
  --accent: #2bb39c;
  --accent-2: #f3a847;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 179, 156, 0.18), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(243, 168, 71, 0.14), transparent 45%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.4rem 1.4rem 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.back-link {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

.brand {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.3rem;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  margin-bottom: 0.55rem;
  font-family: "JetBrains Mono", monospace;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.hero h1 {
  font-size: 1.95rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.hero p {
  color: var(--muted);
  line-height: 1.65;
}

.meta-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.meta {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
  padding: 0.8rem;
}

.meta span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

.section {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

.list {
  list-style: none;
  margin-top: 0.4rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.list li {
  padding-left: 1rem;
  position: relative;
}

.list li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.64rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: var(--surface-2);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  margin-top: 1.3rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
