:root {
  --navy: #0B2545;
  --green: #0E7A3C;
  --gold: #F4B400;
  --light: #F8FAFC;
}

html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

.hero-pattern {
  background:
    radial-gradient(circle at 10% 15%, rgba(14,122,60,0.22), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(244,180,0,0.20), transparent 32%),
    linear-gradient(135deg, #071A33 0%, #0B2545 54%, #0E3E33 100%);
}

.glass-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(14px);
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1.1;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #12A65A);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 14px 30px rgba(14,122,60,0.24);
  transition: 0.2s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 35px rgba(14,122,60,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  transition: 0.2s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.admin-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 14px 35px rgba(15,23,42,0.05);
}

.input {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.75rem 0.9rem;
  outline: none;
  font-size: 0.92rem;
  transition: 0.16s ease;
}
.input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(14,122,60,0.12); }

.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-small {
  border-radius: 0.85rem;
  padding: 0.65rem 0.9rem;
  background: #0B2545;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
}
.btn-small:hover { background: #123764; }

.btn-danger {
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fff1f2;
  color: #be123c;
  font-weight: 800;
  font-size: 0.78rem;
}
.btn-danger:hover { background: #ffe4e6; }

.table-scroll { overflow-x: auto; }
.chart-box { height: 390px; }

@media (max-width: 768px) {
  .chart-box { height: 330px; }
}
