/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0f14;
  color: #e5e7eb;
  line-height: 1.6;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

header,
footer {
  background: #111827;
  border-bottom: 1px solid #1f2937;
}

footer {
  border-top: 1px solid #1f2937;
  border-bottom: none;
  margin-top: 48px;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 700;
}

/* ===== TYPOGRAPHY ===== */
.page-title {
  font-size: 32px;
  margin-top: 24px;
}

.page-subtitle {
  color: #9ca3af;
  margin-top: 8px;
  max-width: 720px;
}

h1, h2, h3 {
  font-weight: 600;
}

.subtext {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 12px;
}
