:root {
  --navy: #0c1a2e;
  --navy-mid: #142038;
  --navy-light: #1e3058;
  --teal: #00c9a7;
  --teal-dim: #007a69;
  --teal-pale: #e0f7f3;
  --amber: #f5a623;
  --amber-pale: #fff8ec;
  --red: #e85050;
  --red-pale: #fff0f0;
  --blue: #3a86ff;
  --blue-pale: #eef4ff;
  --pink: #ff6fae;
  --text: #1a2332;
  --text-mid: #455066;
  --text-muted: #7a8899;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --sidebar-w: 270px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

p { color: var(--text-mid); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ── WARNING ── */
.warning {
  background: var(--amber-pale);
  border: 1px solid #f5c46633;
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}

.warning-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c47d00;
  margin-bottom: 6px;
}

.warning p {
  color: #7a5200;
  font-size: 14px;
  margin-bottom: 0;
}
