:root {
  --bg: #fffaf3;
  --card: #ffffff;
  --line: #f2c98c;
  --text: #3e2b12;
  --muted: #876946;
  --accent: #d97706;
  --accent-2: #f59e0b;
  --accent-3: #fef3c7;
  --shadow: 0 12px 30px rgba(217, 119, 6, .12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, #fffaf3 100%);
  color: var(--text);
}
.shell { max-width: 1320px; margin: 0 auto; padding: 18px; }
.hero {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px;
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 60%, #fcd34d 100%);
  color: #fff; border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.hero h1 { margin: 6px 0 10px; font-size: 32px; }
.hero p { margin: 0; line-height: 1.6; max-width: 900px; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; opacity: .92; font-weight: 700; }
.hero-badges { display: flex; flex-wrap: wrap; align-content: start; gap: 10px; justify-content: flex-end; }
.filters, .panel, .stat-card, .tabs { background: var(--card); border: 2px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.filters { margin-top: 16px; padding: 18px; }
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.field label { display: block; margin-bottom: 8px; font-size: 13px; color: var(--muted); font-weight: 700; }
.field select { width: 100%; border: 2px solid #f1b766; border-radius: 14px; padding: 12px; background: #fff; color: var(--text); }
.chips-row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); font-size: 12px; font-weight: 700; }
.filters .chip { background: var(--accent-3); color: #8a5200; border-color: #f5c46d; }
.chip.strong { background: rgba(255,255,255,.18); }
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; padding: 12px; }
.tab { text-decoration: none; color: var(--text); font-weight: 700; padding: 11px 16px; border-radius: 14px; }
.tab.active { background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%); color: #8a5200; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.stat-card { padding: 18px; }
.stat-card h3 { margin: 0 0 10px; font-size: 14px; color: var(--muted); }
.stat-card strong { display: block; font-size: 34px; margin-bottom: 8px; }
.stat-card span { color: var(--muted); font-size: 13px; }
.panel { margin-top: 16px; padding: 18px; }
.panel-header { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin-bottom: 14px; }
.panel-header h2 { margin: 0; font-size: 22px; }
.panel-header p { margin: 0; color: var(--muted); max-width: 760px; line-height: 1.5; }
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.action-card {
  text-decoration: none; color: var(--text); padding: 18px; min-height: 178px; border-radius: 22px;
  background: linear-gradient(135deg, #fffbeb 0%, #fde68a 100%); border: 2px solid #f5c46d;
  transition: transform .18s ease, box-shadow .18s ease;
}
.action-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.action-card .emoji { font-size: 28px; margin-bottom: 12px; }
.action-card h3 { margin: 0 0 10px; }
.action-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bullet-list { margin: 0; padding-left: 20px; line-height: 1.7; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); color: #fff; text-align: left;
  padding: 12px; font-size: 13px; border: 1px solid #b86100;
}
.data-table tbody td { padding: 12px; border: 1px solid #e8c08f; background: #fff; font-size: 14px; }
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #fff3cd; border: 1px solid #f0c25d; color: #935400; font-weight: 700; font-size: 12px; }
@media (max-width: 1024px) {
  .hero, .two-col, .filter-grid, .stats-grid, .action-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero, .two-col, .filter-grid, .stats-grid, .action-grid { grid-template-columns: 1fr; }
  .panel-header { flex-direction: column; align-items: start; }
  .hero h1 { font-size: 26px; }
}
