:root {
  --bg: #14161d;
  --bg-elevated: #1c1f29;
  --text: #e8e3d5;
  --text-dim: #8a8578;
  --accent: #e89a3c;
  --accent-bright: #f4b942;
  --accent-dim: #876035;
  --border: #2a2e3a;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% -10%, rgba(232, 154, 60, 0.06), transparent 55%),
    radial-gradient(ellipse at 80% 110%, rgba(232, 154, 60, 0.03), transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "calt" 1, "liga" 1;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 8vh 5vw 4vh;
}

.bracket-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3em;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.bracket {
  color: var(--accent);
  font-weight: 400;
}

.brand {
  color: var(--text);
}

.dim {
  color: var(--text-dim);
}

.tagline {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

section {
  margin-bottom: 2.5rem;
}

h1, h2 {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

h1::before, h2::before {
  content: "// ";
  color: var(--accent-dim);
}

p, li {
  margin-bottom: 0.85rem;
  max-width: 62ch;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  padding-left: 1.2em;
  position: relative;
}

li::before {
  content: "─";
  color: var(--text-dim);
  position: absolute;
  left: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent-dim);
  transition: color 0.15s ease, border-bottom-style 0.15s ease;
}

a:hover, a:focus-visible {
  border-bottom-style: solid;
  color: var(--accent-bright);
  outline: none;
}

footer {
  margin-top: 4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}

footer a {
  color: var(--text-dim);
  border-bottom-color: var(--border);
}

::selection {
  background: var(--accent-dim);
  color: var(--text);
}
