:root {
  --bg: #0f1317;
  --surface: rgba(20, 26, 33, 0.88);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.72);
  --border: rgba(244, 239, 231, 0.16);
  --accent: #d08a57;
  --accent-2: #74a18d;
  --max-width: 900px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Familjen Grotesk", system-ui, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(130deg, rgba(15, 19, 23, 0.76), rgba(15, 19, 23, 0.92)),
    url("./background.jpeg") center / cover fixed;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 18, 0.72);
}

.header-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(95%) sepia(11%) saturate(199%) hue-rotate(342deg) brightness(104%) contrast(91%);
}

.brand span {
  font-family: "Chivo", sans-serif;
  font-size: 1.1rem;
}

.back-link {
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

main {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  color: var(--accent-2);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0.8rem 0 0;
  font-family: "Chivo", sans-serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.05;
}

.updated {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

section {
  margin-top: 1.4rem;
}

h2 {
  margin: 0;
  font-family: "Chivo", sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
}

p,
li {
  color: var(--muted);
}

ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 15, 0.7);
}

.footer-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-shell p {
  margin: 0;
  color: rgba(244, 239, 231, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.footer-shell nav {
  display: flex;
  gap: 0.9rem;
}

.footer-shell nav a {
  text-decoration: none;
  color: rgba(244, 239, 231, 0.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}
