@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400&family=Host+Grotesk:wght@400&display=swap");

:root {
  --bg: #000000;
  --panel: #000000;
  --text: #e9eef9;
  --muted: #858585;
  --accent: #3ad1a8;
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  mix-blend-mode: screen;
}

.container {
  width: min(900px, 92vw);
  margin: 2rem auto 4rem;
}

.hero h1 {
  margin: 0;
  font-family: "Host Grotesk", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
}

.releases {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.release {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  background: #121212;
}

.release h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Host Grotesk", "Segoe UI", sans-serif;
  font-weight: 400;
}

.notes h1,
.notes h2,
.notes h3,
.notes h4 {
  font-family: "Host Grotesk", "Segoe UI", sans-serif;
  font-weight: 400;
}

.release-link {
  color: var(--text);
}

.meta {
  margin: 0.35rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.notes {
  margin: 0;
  color: #d4e0f9;
  line-height: 1.55;
}

.notes > *:first-child {
  margin-top: 0;
}

.notes > *:last-child {
  margin-bottom: 0;
}

.notes h1,
.notes h2,
.notes h3,
.notes h4 {
  margin: 1rem 0 0.45rem;
  line-height: 1.25;
}

.notes p,
.notes ul,
.notes ol,
.notes blockquote {
  margin: 0.55rem 0;
}

.notes ul,
.notes ol {
  padding-left: 1.2rem;
}

.notes a {
  color: #7fd9ff;
}

.notes code {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: #1b2740;
  border-radius: 6px;
  padding: 0.1rem 0.3rem;
}

.notes pre {
  overflow-x: auto;
  background: #0a1220;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
}

.notes pre code {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.notes blockquote {
  margin-left: 0;
  border-left: 3px solid var(--accent);
  padding-left: 0.7rem;
  color: #c8d8f4;
}
