/* =========================
   Core Variables
========================= */

:root {
  --bg: #0b0e14;
  --ink: #e7e9ef;
  --muted: #a1a7bd;
  --line: #1e2233;
  --accent: #d18b47;

  --max: 760px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

/* =========================
   Reset
========================= */

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

html {
  font-size: 17px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.65;
}

/* =========================
   Layout
========================= */

.page {
  max-width: var(--max);
  padding: var(--pad);
}

/* =========================
   Masthead
========================= */

.masthead {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.masthead h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.subtitle {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}

/* =========================
   About
========================= */

.about p {
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.roles {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--line);
}

.roles li {
  padding: 0.4rem 0 0.4rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   Status
========================= */

.status {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}

.status strong {
  color: var(--ink);
  font-weight: 500;
}

/* =========================
   Footer
========================= */

.footer {
  margin-top: 4rem;
  font-size: 0.85rem;
}

.footer nav {
  display: flex;
  gap: 1.5rem;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* =========================
   Now Page
========================= */

.now-block {
  margin-bottom: 2.5rem;
}

.now-block h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.now-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.now-block li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  max-width: 60ch;
}

.now-block li:last-child {
  border-bottom: none;
}

.now-block.muted li {
  color: var(--muted);
}

/* =========================
   Timestamp
========================= */

.timestamp {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* =========================
   Now Page Copy
========================= */

.now-copy {
  max-width: 62ch;
}

.now-copy p {
  margin-bottom: 1.4rem;
}

/* Timestamp already defined earlier */


