/* ============================================================
   EEOP — Elixir Enviro brand stylesheet v1.2
   Aligned with Elixir ERP palette (stone/sand) for visual continuity.
   Loaded on top of Bootstrap 5.
============================================================ */

:root {
  /* Elixir green */
  --ees-green-900: #0f3b22;
  --ees-green-800: #1a4d2e;
  --ees-green-700: #266e42;
  --ees-green-600: #3a7d50;
  --ees-green-100: #e8f1ea;
  --ees-green-50:  #f3f8f4;

  /* Stone (page surfaces) */
  --stone-50:  #fafaf7;
  --stone-100: #f5f4ef;
  --stone-200: #e7e5e0;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --stone-900: #1c1917;

  /* Sand (warm tints) */
  --sand-50:  #faf6ee;
  --sand-100: #f3ead7;
  --sand-200: #e8d9b0;

  /* Accents — gold + rust (ERP signature) */
  --accent-gold: #c8a14a;
  --accent-rust: #b45309;
  --accent-danger: #b91c1c;
  --accent-success: #15803d;

  --ees-radius: 6px;
  --ees-radius-lg: 8px;
}

/* ---------- Global ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--stone-50);
  color: var(--stone-900);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

/* ============================================================
   ADMIN navbar + sidebar
============================================================ */

nav.navbar.bg-dark {
  background: linear-gradient(135deg, var(--ees-green-800) 0%, var(--ees-green-700) 100%) !important;
  border-bottom: 1px solid var(--ees-green-900);
  padding: 0.6rem 1.25rem !important;
}
nav.navbar .navbar-brand {
  color: #fff !important;
  font-weight: 600;
}
nav.navbar .navbar-brand::before {
  content: '';
  display: inline-block;
  width: 26px; height: 26px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: -7px;
  background: radial-gradient(circle at 35% 35%, var(--ees-green-600) 0%, var(--ees-green-800) 70%);
}

/* App shell: fixed-width sidebar + fluid main, via flexbox (no Bootstrap grid) */
.app-shell {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 52px);
}
.app-sidebar {
  width: 210px;
  flex: 0 0 210px;
  background: var(--stone-100);
  border-right: 1px solid var(--stone-200);
  padding: 12px 0;
}
.app-sidebar nav { display: flex; flex-direction: column; }
.app-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.1rem;
  color: var(--stone-700);
  text-decoration: none;
  font-size: 13.5px;
  border-left: 3px solid transparent;
  white-space: nowrap;
}
.app-sidebar a:hover { background: var(--ees-green-50); }
.app-sidebar a.active {
  background: var(--ees-green-100);
  color: var(--ees-green-800);
  border-left-color: var(--ees-green-700);
  font-weight: 500;
}
.app-sidebar a i {
  color: var(--ees-green-700);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.app-sidebar a.active i { color: var(--ees-green-800); }
.app-sidebar-label {
  font-size: 10px;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.1rem 0.3rem;
  font-weight: 600;
}
.app-main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.5rem 1.75rem;
  background: var(--stone-50);
}

/* mobile: sidebar becomes a horizontal scroll strip */
@media (max-width: 768px) {
  .app-shell { flex-direction: column; }
  .app-sidebar {
    width: 100%;
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--stone-200);
    padding: 4px 0;
  }
  .app-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
  }
  .app-sidebar a {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 0.6rem 0.9rem;
  }
  .app-sidebar a.active {
    border-left: none;
    border-bottom-color: var(--ees-green-700);
  }
  .app-sidebar-label { display: none; }
  .app-main { padding: 1rem; }
}

/* Legacy .sidebar / .main kept for any unconverted page */
.sidebar {
  background: var(--stone-100) !important;
  border-right: 1px solid var(--stone-200) !important;
}
.sidebar a {
  color: var(--stone-700) !important;
  font-size: 13px;
  padding: 0.6rem 1rem !important;
  border-left: 3px solid transparent;
  display: flex; align-items: center; gap: 8px;
}
.sidebar a:hover { background: var(--ees-green-50) !important; }
.sidebar a.active {
  background: var(--ees-green-100) !important;
  color: var(--ees-green-800) !important;
  border-left-color: var(--ees-green-700) !important;
  font-weight: 500;
}
.sidebar a i { color: var(--ees-green-700); }

/* ============================================================
   ADMIN dashboard — Option A (Cockpit)
============================================================ */

.cockpit-greeting {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.cockpit-date {
  font-size: 11px;
  color: var(--stone-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cockpit-hi {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--stone-900);
}

.pipeline-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--ees-radius-lg);
  padding: 16px 18px;
}
.pipeline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.pipeline-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ees-green-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-subtitle {
  font-size: 11px;
  color: var(--stone-500);
}

.pipeline-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pipeline-cell {
  padding: 0 12px;
  border-right: 1px solid var(--stone-200);
}
.pipeline-cell:first-child { padding-left: 0; }
.pipeline-cell:last-child { border-right: none; padding-right: 0; }
.pipeline-num {
  font-size: 24px;
  font-weight: 500;
  color: var(--ees-green-800);
  line-height: 1;
}
.pipeline-num.warn { color: var(--accent-rust); }
.pipeline-num.gold { color: var(--accent-gold); }
.pipeline-label {
  font-size: 11px;
  color: var(--stone-500);
  margin-top: 4px;
}
.pipeline-bar {
  height: 3px;
  background: var(--stone-100);
  margin-top: 8px;
  border-radius: 2px;
  overflow: hidden;
}
.pipeline-bar > div {
  height: 100%;
  background: var(--ees-green-700);
  border-radius: 2px;
}
.pipeline-bar > .warn { background: var(--accent-rust); }
.pipeline-bar > .gold { background: var(--accent-gold); }
.pipeline-bar > .ok   { background: var(--accent-success); }

.action-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--ees-radius-lg);
  padding: 16px 18px;
}
.action-card-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--stone-100);
  font-size: 13px;
}
.action-card-row:last-child { border-bottom: none; }
.action-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-rust);
  flex-shrink: 0;
}
.action-dot.ok    { background: var(--accent-success); }
.action-dot.gold  { background: var(--accent-gold); }
.action-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--stone-500);
}

.recent-table {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--ees-radius-lg);
  overflow: hidden;
}
.recent-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stone-200);
}
.recent-table-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ees-green-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.recent-grid-head, .recent-grid-row {
  display: grid;
  grid-template-columns: 110px 1.4fr 1.4fr 110px 100px 90px;
  gap: 14px;
  padding: 10px 18px;
  align-items: center;
}
.recent-grid-head {
  background: var(--stone-50);
  border-bottom: 1px solid var(--stone-100);
}
.recent-grid-head > div {
  font-size: 10px;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.recent-grid-row {
  border-bottom: 1px solid var(--stone-100);
  font-size: 13px;
}
.recent-grid-row:last-child { border-bottom: none; }
.recent-project-name { font-weight: 500; }
.recent-project-sub  { font-size: 11px; color: var(--stone-500); }

.row-progress {
  display: flex; flex-direction: column; gap: 3px;
}
.row-progress-num {
  font-size: 11px;
  color: var(--ees-green-800);
  font-weight: 500;
}
.row-progress-bar {
  height: 3px;
  background: var(--stone-100);
  border-radius: 2px;
  overflow: hidden;
}
.row-progress-bar > div {
  height: 100%;
  background: var(--ees-green-700);
  border-radius: 2px;
}

/* status pills */
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}
.pill-draft       { background: var(--stone-100);  color: var(--stone-700); }
.pill-sent        { background: #dbeafe;          color: #1e40af; }
.pill-in_progress { background: #fef3c7;          color: #92400e; }
.pill-submitted   { background: #dcfce7;          color: var(--accent-success); }
.pill-reviewed    { background: var(--ees-green-100); color: var(--ees-green-800); }
.pill-closed      { background: var(--stone-200);  color: var(--stone-700); }
.pill-cancelled   { background: #fee2e2;          color: var(--accent-danger); }

/* cards / table general */
.card { border: 1px solid var(--stone-200); border-radius: var(--ees-radius-lg); }
.card-header.bg-white {
  background: #fff !important;
  border-bottom: 1px solid var(--stone-200);
  padding: 0.85rem 1.1rem;
  font-size: 14px;
}
.card-header.bg-white strong { color: var(--ees-green-800); }

/* buttons */
.btn-primary {
  background: var(--ees-green-700);
  border-color: var(--ees-green-700);
  font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
  background: var(--ees-green-800);
  border-color: var(--ees-green-800);
}
.btn-outline-primary {
  color: var(--ees-green-700);
  border-color: var(--ees-green-600);
}
.btn-outline-primary:hover {
  background: var(--ees-green-700);
  border-color: var(--ees-green-700);
}
.btn-success {
  background: var(--ees-green-700);
  border-color: var(--ees-green-700);
}
.btn-success:hover { background: var(--ees-green-800); border-color: var(--ees-green-800); }
.btn-danger {
  background: var(--accent-danger);
  border-color: var(--accent-danger);
}
.btn-outline-danger {
  color: var(--accent-danger);
  border-color: var(--accent-danger);
}

/* progress bars */
.progress-bar.bg-success { background-color: var(--ees-green-700) !important; }
.progress-bar.bg-warning { background-color: var(--accent-rust) !important; }
.progress-bar.bg-danger  { background-color: var(--accent-danger) !important; }

/* breadcrumbs */
.breadcrumb-item a { color: var(--ees-green-700); text-decoration: none; }
.breadcrumb-item.active { color: var(--stone-500); }

/* code chips */
code {
  color: var(--ees-green-800);
  background: var(--ees-green-50);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* alerts */
.alert-info {
  background: var(--ees-green-50);
  color: var(--ees-green-800);
  border-color: #a7f3d0;
}
.alert-success { background: #d1fae5; color: #064e3b; border-color: #6ee7b7; }
.alert-warning { background: var(--sand-100); color: var(--accent-rust); border-color: var(--sand-200); }

/* Danger zone (for delete) */
.danger-zone {
  border: 1px solid #fecaca;
  border-radius: var(--ees-radius-lg);
  background: #fef2f2;
  padding: 16px 18px;
  margin-top: 1.5rem;
}
.danger-zone h6 {
  color: var(--accent-danger);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.danger-zone p { font-size: 13px; color: var(--stone-700); margin-bottom: 12px; }

/* admin section headings (answers review) */
.answers-section { margin-bottom: 1.5rem; }
.answers-section h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ees-green-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--ees-green-700);
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
}
.answers-section table.table-sm td:first-child {
  color: var(--stone-500);
  font-size: 13px;
  width: 45%;
}
.answers-section table.table-sm td:last-child {
  color: var(--stone-900);
  font-size: 13.5px;
}

/* ============================================================
   CLIENT PORTAL — Option A (PDF-style two-column)
============================================================ */

body.client-portal {
  background: var(--stone-100);
  color: var(--stone-900);
}

.qp-page {
  max-width: 920px;
  margin: 0 auto;
  background: var(--stone-50);
  min-height: 100vh;
  border-left: 1px solid var(--stone-200);
  border-right: 1px solid var(--stone-200);
}

.qp-header {
  background: #fff;
  padding: 16px 28px;
  border-bottom: 2px solid var(--ees-green-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
}
.qp-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qp-logo {
  width: 40px; height: 40px;
  background: var(--ees-green-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700; font-size: 13px;
}
.qp-co {
  font-size: 15px;
  font-weight: 600;
  color: var(--ees-green-800);
  line-height: 1.15;
}
.qp-tag {
  font-size: 10px;
  color: var(--stone-500);
  font-style: italic;
}
.qp-meta {
  text-align: right;
  font-size: 11px;
  color: var(--stone-500);
}
.qp-savedot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent-success);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: 1px;
}

.qp-title-block {
  padding: 22px 28px 8px;
  text-align: center;
  border-bottom: 1px solid var(--stone-200);
  background: var(--stone-50);
}
.qp-title-block h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--stone-900);
}
.qp-title-sub {
  font-size: 11px;
  color: var(--stone-500);
  margin-top: 4px;
  margin-bottom: 12px;
}

.qp-progress-track {
  height: 5px;
  background: var(--stone-200);
  margin: 0 -28px -1px;
}
.qp-progress-fill {
  height: 100%;
  background: var(--ees-green-700);
  transition: width 0.3s ease;
}

.qp-body {
  padding: 18px 28px 24px;
}

.qp-banner {
  background: var(--ees-green-50);
  border-left: 3px solid var(--ees-green-700);
  color: var(--ees-green-800);
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  font-size: 12.5px;
  margin-bottom: 18px;
}
.qp-banner.submitted {
  background: #d1fae5;
  border-color: var(--accent-success);
  color: #064e3b;
}

/* the two-column "PDF" table */
.qp-section {
  margin-bottom: 18px;
}
.qp-section-head {
  background: var(--ees-green-800);
  color: #fff;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qp-section-head .secount {
  background: rgba(255,255,255,0.15);
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
}
.qp-section-body {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.qp-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  padding: 8px 14px;
  align-items: center;
  border-bottom: 1px solid var(--stone-100);
  min-height: 38px;
}
.qp-row:last-child { border-bottom: none; }
.qp-row.qp-conditional {
  background: var(--ees-green-50);
  border-left: 3px solid var(--accent-gold);
}
.qp-row.qp-conditional .qp-label::before {
  content: '↳ ';
  color: var(--accent-gold);
  font-weight: 600;
}

/* On narrow screens (mobile/tablet), stack label above input */
@media (max-width: 720px) {
  .qp-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 12px; }
  .qp-page { border-left: none; border-right: none; }
  .qp-header { padding: 12px 14px; }
  .qp-body { padding: 14px; }
  .qp-title-block { padding: 16px 14px 6px; }
  .qp-progress-track { margin: 0 -14px -1px; }
}

.qp-label {
  font-size: 13px;
  color: var(--stone-700);
  font-weight: 400;
}
.qp-label .req { color: var(--accent-danger); font-weight: 600; }
.qp-label .unit {
  color: var(--stone-500);
  font-size: 11px;
  margin-left: 4px;
}
.qp-help {
  display: block;
  font-size: 11px;
  color: var(--stone-500);
  margin-top: 2px;
}

.qp-row input[type="text"],
.qp-row input[type="email"],
.qp-row input[type="tel"],
.qp-row input[type="number"],
.qp-row input[type="date"],
.qp-row select,
.qp-row textarea {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid var(--stone-300);
  border-radius: 3px;
  font-size: 13px;
  background: var(--stone-50);
  box-sizing: border-box;
  font-family: inherit;
}
.qp-row textarea { resize: vertical; min-height: 56px; }
.qp-row input:focus, .qp-row select:focus, .qp-row textarea:focus {
  border-color: var(--ees-green-600);
  background: #fff;
  box-shadow: 0 0 0 2px var(--ees-green-50);
  outline: none;
}
.qp-row select { padding: 5px 8px; }

/* Radios + checkboxes — inline, never clipped */
.qp-row .qp-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.qp-choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--stone-700);
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 2px 0;
}
.qp-choice input[type="radio"],
.qp-choice input[type="checkbox"] {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--ees-green-700);
  cursor: pointer;
}

/* Checkbox/radio rendered as compact pill grid — for sets of >4 options */
.qp-row .qp-pillset {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.qp-pillset label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid var(--stone-300);
  border-radius: 14px;
  font-size: 12px;
  color: var(--stone-700);
  cursor: pointer;
  background: var(--stone-50);
}
.qp-pillset label:has(input:checked) {
  border-color: var(--ees-green-700);
  background: var(--ees-green-50);
  color: var(--ees-green-800);
  font-weight: 500;
}
.qp-pillset input { display: none; }

/* Inline attach (Section 7) — Yes/No and the file picker on one line */
.qp-row-attach .qp-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}
.qp-row-attach .qp-choices {
  flex: 0 0 auto;
  white-space: nowrap;
}
.qp-inline-attach {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.qp-inline-file {
  font-size: 12px;
  max-width: 215px;
}
.qp-inline-file::-webkit-file-upload-button,
.qp-inline-file::file-selector-button {
  font-size: 11px;
  padding: 3px 10px;
  margin-right: 8px;
  border: 1px solid var(--ees-green-600);
  border-radius: 4px;
  background: var(--ees-green-50);
  color: var(--ees-green-800);
  cursor: pointer;
}
.qp-inline-file::file-selector-button:hover { background: var(--ees-green-100); }

/* Previously-uploaded files: own line, full width, wraps */
.qp-prev-inline {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 11.5px;
  padding-top: 2px;
}
.qp-prev-inline a {
  color: var(--ees-green-800);
  font-weight: 500;
  text-decoration: none;
}
.qp-prev-inline a:hover { text-decoration: underline; }
.qp-prev-inline span { color: var(--stone-700); }

@media (max-width: 720px) {
  .qp-row-attach .qp-input { gap: 8px; }
  .qp-inline-file { max-width: 100%; }
}

/* File upload */
.qp-fileblock {
  margin-top: 6px;
}
.qp-fileblock input[type="file"] {
  font-size: 12px;
  width: 100%;
}
.qp-prev-files {
  margin-top: 8px;
  padding: 8px 10px;
  background: var(--sand-50);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 4px 4px 0;
  font-size: 12px;
}
.qp-prev-files .lead-label {
  display: block;
  font-size: 10px;
  color: var(--accent-rust);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 3px;
}
.qp-prev-files ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qp-prev-files li { padding: 2px 0; }
.qp-prev-files a {
  color: var(--ees-green-800);
  font-weight: 500;
  text-decoration: none;
}
.qp-prev-files a:hover { text-decoration: underline; }

/* Sub-section (textarea / shed details, etc) */
.qp-textarea-row {
  grid-template-columns: 1fr;
  padding: 10px 14px;
}
.qp-textarea-row .qp-label {
  margin-bottom: 4px;
  font-weight: 500;
}

/* footer */
.qp-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--stone-200);
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px -28px -24px;
}
@media (max-width: 720px) {
  .qp-footer { margin: 14px -14px -14px; padding: 12px 14px; }
  .qp-footer .btn { flex: 1; }
}

/* Save toast */
.qp-toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--ees-green-800);
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(15, 59, 34, 0.2);
  display: none;
  z-index: 50;
}

/* ============================================================
   Section-header rendering (for `section_header` question type)
============================================================ */
.qp-subsection-title {
  margin: 12px 14px 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--stone-200);
  font-size: 12px;
  font-weight: 600;
  color: var(--ees-green-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   Login + thank-you + expired pages
============================================================ */
body.login-page {
  background: linear-gradient(135deg, var(--ees-green-900) 0%, var(--ees-green-700) 100%);
}
.login-page .card-login { max-width: 420px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,.25); border: none; border-radius: 10px; }
.login-page .logo { color: var(--ees-green-700); font-weight: 600; font-size: 22px; }
.login-page .logo-circle {
  width: 56px; height: 56px; margin: 0 auto 0.75rem; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--ees-green-600) 0%, var(--ees-green-800) 70%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}

/* small util */
.text-stone   { color: var(--stone-500); }
.text-rust    { color: var(--accent-rust); }
.text-gold    { color: var(--accent-gold); }
