/*
 * Temporary comics placeholder — aligned with apex/monitor tokens.
 */
:root {
  --bg: #0d1117;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --accent: #58a6ff;
  --border: #30363d;
  --surface: #161b22;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-panel: 12px;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  margin: 0;
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 3rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 36rem;
  margin: 10vh auto 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 600;
}

.lede {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.9375rem;
}
