/* 漏斗看板样式 —— 复用 auth-page.css 的基础设计系统，仅定义漏斗特有布局 */

.funnels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 900px) {
  .funnels-grid {
    grid-template-columns: 1fr;
  }
}

.funnel {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px;
  min-width: 0;
}

.funnel h3 {
  margin: 0 0 1.5rem;
  font-size: 14.5px;
  font-weight: 670;
  color: var(--text-primary);
}

.funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel-stage {
  flex: 1;
}

.stage-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.stage-name {
  font-weight: 620;
  color: var(--text-primary);
}

.stage-stat {
  color: var(--text-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.stage-bar {
  height: 24px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
  position: relative;
}

.stage-dropoff {
  font-size: 11px;
  color: var(--warning);
  margin-top: 0.25rem;
  text-align: right;
  font-weight: 620;
}

@media print {
  .funnel { break-inside: avoid; page-break-inside: avoid; }
}
