:root {
  --green: #2d6a4f;
  --green-dim: rgba(45, 106, 79, 0.08);
  --accent: #f4a261;
  --accent-dim: rgba(244, 162, 97, 0.1);
  --red: #e74c3c;
  --text: #1a1a1a;
  --muted: #888;
  --surface: #fff;
  --surface2: #fafafa;
  --bg: #f5f5f5;
  --border: #e5e5e5;
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-left .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}

.header h1 {
  font-size: 15px;
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
.back-link:hover { color: var(--text); }

.main {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: 'DM Mono', monospace;
}
