:root {
  --bg: #0a0a0b;
  --surface: #151517;
  --line: #2a2a2e;
  --text: #f5f5f7;
  --muted: #98989f;
  --accent: #ff4e00;
  --max: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 78, 0, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ff6a2b;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-block: 2.5rem 4rem;
}

.brand {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 0.35rem;
}

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

.kicker {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}

.meta {
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

p {
  margin: 0;
  white-space: pre-line;
  color: #d8d8de;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 2rem 0 0;
}

.card-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  display: block;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.card:hover {
  border-color: var(--accent);
  background: #1a1a1d;
  color: inherit;
}

.card strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
