:root {
  --reset-primary: #145c49;
  --reset-secondary: #d7efe7;
  --reset-bg: #f7fbf9;
  --reset-fg: #173024;
  --reset-border: #d7e4dd;
  --reset-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  background: var(--reset-bg);
  color: var(--reset-fg);
  font-family: var(--reset-font);
}

a {
  color: var(--reset-primary);
}

.btn-primary {
  color: #fff;
  background-color: var(--reset-primary);
  border-color: var(--reset-primary);
}

.btn-outline-primary {
  color: var(--reset-primary);
  border-color: var(--reset-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background-color: var(--reset-primary);
  border-color: var(--reset-primary);
}

.navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.reset-shell {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.reset-banner {
  background: rgba(20, 92, 73, 0.06);
  border-bottom: 1px solid var(--reset-border);
}

.reset-banner-name {
  color: var(--reset-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.reset-banner-tagline {
  color: var(--reset-fg);
  font-size: 0.88rem;
  line-height: 1.3;
}

.reset-brand {
  color: var(--reset-primary);
  font-weight: 800;
  letter-spacing: 0;
}

.reset-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--reset-border);
  padding: 4px;
}

.reset-hero {
  border: 1px solid var(--reset-border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(20, 92, 73, 0.06), rgba(20, 92, 73, 0.02) 55%, rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 40px rgba(11, 45, 34, 0.08);
}

.reset-panel {
  border: 1px solid var(--reset-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(11, 45, 34, 0.05);
}

.reset-kicker {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: var(--reset-primary);
  font-weight: 700;
}

.reset-stat {
  border: 1px solid var(--reset-border);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}

.reset-stat .label {
  font-size: 0.82rem;
  color: #647067;
}

.reset-stat .value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--reset-fg);
}

.text-muted {
  color: #647067 !important;
}

.form-control:focus,
.form-select:focus,
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(20, 92, 73, 0.25);
}

.table thead th {
  white-space: nowrap;
}

.badge-reset {
  background: var(--reset-secondary);
  color: var(--reset-primary);
}

.card,
.accordion-item,
.list-group-item {
  border-color: var(--reset-border);
}

.footer {
  line-height: 1.4;
}

@media print {
  .reset-shell .navbar {
    display: none !important;
  }

  .reset-shell {
    position: static;
  }
}
