@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Fira+Mono:wght@400;500&display=swap');

:root {
  --bg: #1a1a2e;
  --surface: #16213e;
  --accent: #0f9b8e;
  --accent-dim: #0d7a6f;
  --text: #e0e0e0;
  --text-muted: #9a9ab0;
  --border: #2a2a4a;
  --header-height: 48px;
}

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

html, body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Header ── */
#header {
  height: var(--header-height);
  width: 100%;
  background-color: var(--surface);
  border-bottom: 2px solid var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  max-width: none;
}

/* ── Accent sidebars ── */
.left {
  width: 6px;
  background-color: var(--accent);
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  max-width: none;
  border-radius: 0;
}

.right {
  width: 6px;
  background-color: var(--accent);
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  max-width: none;
  border-radius: 0;
}

/* ── Main content ── */
.stuff {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) 40px 80px;
}

/* ── Name / header block ── */
.stuff h1 {
  display: none;
}

.stuff h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stuff > p:first-of-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 28px;
}

/* ── Section headings ── */
.head {
  font-family: 'Fira Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

/* ── Body text ── */
p {
  color: var(--text);
  margin-bottom: 8px;
}

/* ── Lists ── */
ul {
  list-style: none;
  padding: 0;
}

ul > li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

ul > li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Nested lists (job bullets) */
ul ul {
  margin-top: 6px;
  margin-left: 8px;
}

ul ul > li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

ul ul > li::before {
  content: '–';
  color: var(--text-muted);
}

/* ── Job entry spacing ── */
ul > li + li {
  margin-top: 20px;
}

/* ── Links ── */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Visitor counter ── */
#counter {
  font-family: 'Fira Mono', monospace;
  color: var(--accent);
  font-weight: 500;
}

/* ── Footer ── */
#footer {
  height: 48px;
  width: 100%;
  background-color: var(--surface);
  border-top: 2px solid var(--accent);
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: none;
}

#name {
  font-family: 'Fira Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  float: right;
  line-height: 48px;
  margin-right: 24px;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media only screen and (max-width: 600px) {
  .left,
  .right {
    display: none;
  }

  .stuff {
    padding-left: 20px;
    padding-right: 20px;
  }
}
