/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  color: #111;
  background-color: #f4f5f9;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

.app-shell {
  background: linear-gradient(#fefefe 0%, #eef0ff 100%);
  min-height: 100vh;
}

.site-header {
  border-bottom: 1px solid #11223314;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
}

.site-header h1, .site-header .eyebrow {
  margin: 0;
}

.site-nav a {
  color: #1d1d1d;
  margin-left: 1rem;
  font-weight: 600;
  text-decoration: none;
}

main {
  padding: 2rem 4vw 4rem;
}

.hero h2 {
  margin-bottom: .75rem;
  font-size: clamp(2.2rem, 3vw, 2.6rem);
}

.hero p {
  color: #202637;
  max-width: 600px;
}

.highlights {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
  display: grid;
}

.highlight {
  color: #fff;
  background: #0c77ff;
  border-radius: .75rem;
  padding: 1rem;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #6366f1;
  margin-bottom: .25rem;
  font-size: .8rem;
}

.ghost-button, .pill {
  cursor: pointer;
  background: #fff;
  border: 1px solid #1233;
  border-radius: 999px;
  padding: .5rem .85rem;
  font-weight: 600;
}

.ghost-button {
  color: #0753b2;
  border-color: #0076ff66;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.lead-table {
  background: #fff;
  border: 1px solid #0f172a0d;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 20px 50px #0f172a14;
}

.table-head, .table-row {
  grid-template-columns: .8fr 2fr 1fr 1fr 1fr 2fr;
  align-items: center;
  gap: .5rem;
  padding: .5rem .25rem;
  display: grid;
}

.table-head {
  text-transform: uppercase;
  color: #64748b;
  font-size: .75rem;
}

.table-row:not(:last-child) {
  border-bottom: 1px solid #0f172a0f;
}

.row-actions {
  gap: .35rem;
  display: flex;
}

.pill.ghost {
  background: #f5f7ff;
}

.detail-grid {
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  display: grid;
  box-shadow: 0 10px 35px #0f172a0d;
}

.import-panel {
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 24px #0f172a0a;
}

.field-row {
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .85rem;
  display: flex;
}

.filter-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .6rem;
  display: grid;
}

.input, .textarea {
  font: inherit;
  border: 1px solid #0f172a24;
  border-radius: .65rem;
  padding: .55rem .7rem;
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.muted {
  color: #475569;
  font-size: .92rem;
}

.empty-state {
  color: #475569;
  padding: .9rem .3rem;
  font-size: .95rem;
}

.crm-counters {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .6rem;
  margin-bottom: 1rem;
  display: grid;
}

.counter-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #0f172a1f;
  border-radius: .9rem;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem .9rem;
  display: flex;
}

.counter-card strong {
  font-size: 1.1rem;
}

.counter-card.active {
  border-color: #2563eb;
  box-shadow: inset 0 0 0 1px #2563eb33;
}

.crm-head, .crm-row {
  grid-template-columns: 1.6fr 1.2fr 1fr .5fr 2.8fr;
}

/*# sourceMappingURL=apps_web_src_app_globals_ea8a3ee7.css.map*/