html:not(.app-route-document) .reporting-dashboards-page {
  --reporting-ink: #0f172a;
  --reporting-copy: #475569;
  --reporting-muted: #64748b;
  --reporting-faint: #94a3b8;
  --reporting-border: #e2e8f0;
  --reporting-border-subtle: #eef2f7;
  --reporting-surface: #ffffff;
  --reporting-surface-soft: #f8fafc;
  --reporting-surface-tint: #eff6ff;
  --reporting-accent: #2563eb;
  --reporting-accent-deep: #1d4ed8;
  --reporting-teal: #0f766e;
  --reporting-success: #059669;
  --reporting-warning: #b45309;
  --reporting-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  display: block;
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
  padding: 132px 0 96px;
  color: var(--reporting-ink);
  font-family: 'Inter', system-ui, sans-serif;
}

html:not(.app-route-document) .reporting-dashboards-page h1,
html:not(.app-route-document) .reporting-dashboards-page h2,
html:not(.app-route-document) .reporting-dashboards-page h3 {
  color: var(--reporting-ink);
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
}

.reporting-dashboards-page section {
  scroll-margin-top: 108px;
}

.reporting-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  min-height: 680px;
  padding: 24px 0 80px;
}

.reporting-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(3.2rem, 5.4vw, 5.9rem);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.reporting-hero-lede {
  max-width: 690px;
  color: var(--reporting-copy);
  font-size: 1.08rem;
  line-height: 1.72;
}

.reporting-hero-actions,
.reporting-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reporting-btn-secondary {
  border: 1px solid var(--reporting-border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--reporting-ink);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
}

.reporting-btn-secondary:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
}

.reporting-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--reporting-muted);
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.reporting-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reporting-hero-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--reporting-teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.reporting-workspace-preview {
  position: relative;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.06);
}

.reporting-workspace-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.045), transparent 32%, rgba(15, 118, 110, 0.035));
}

.reporting-preview-topbar,
.reporting-preview-controls,
.reporting-preview-kpis,
.reporting-preview-grid,
.reporting-preview-boundary {
  position: relative;
}

.reporting-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 8px 14px;
  border-bottom: 1px solid var(--reporting-border-subtle);
}

.reporting-preview-topbar > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reporting-preview-logo {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 8px;
  background: var(--reporting-surface-tint);
}

.reporting-preview-logo i {
  width: 3px;
  border-radius: 2px;
  background: var(--reporting-accent);
}

.reporting-preview-logo i:nth-child(1) { height: 8px; }
.reporting-preview-logo i:nth-child(2) { height: 14px; }
.reporting-preview-logo i:nth-child(3) { height: 11px; }

.reporting-preview-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.reporting-preview-state,
.reporting-health-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 700;
}

.reporting-preview-state i,
.reporting-health-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.reporting-preview-controls {
  display: flex;
  gap: 8px;
  padding: 14px 0;
}

.reporting-preview-controls span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid var(--reporting-border);
  border-radius: 7px;
  background: #ffffff;
  color: var(--reporting-copy);
  font-size: 0.7rem;
  font-weight: 650;
}

.reporting-preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reporting-preview-kpis article,
.reporting-preview-chart,
.reporting-preview-table {
  border: 1px solid var(--reporting-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.reporting-preview-kpis article {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.reporting-preview-kpis span,
.reporting-preview-kpis small,
.reporting-preview-card-header span {
  color: var(--reporting-faint);
  font-size: 0.64rem;
  font-weight: 650;
}

.reporting-preview-kpis strong {
  color: var(--reporting-ink);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-variant-numeric: tabular-nums;
}

.reporting-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 10px;
  margin-top: 10px;
}

.reporting-preview-chart,
.reporting-preview-table {
  min-height: 254px;
  padding: 15px;
}

.reporting-preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reporting-preview-card-header strong {
  color: var(--reporting-ink);
  font-size: 0.72rem;
}

.reporting-line-chart {
  position: relative;
  height: 190px;
  margin-top: 18px;
  overflow: hidden;
}

.reporting-chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, var(--reporting-border-subtle) 1px, transparent 1px);
  background-size: 100% 25%;
}

.reporting-line-chart svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
  overflow: visible;
}

.reporting-area { fill: url('#none'); fill: rgba(37, 99, 235, 0.08); stroke: none; }
.reporting-line { fill: none; stroke: var(--reporting-accent); stroke-width: 3; vector-effect: non-scaling-stroke; }

.reporting-preview-table-row {
  display: grid;
  grid-template-columns: minmax(100px, 1.25fr) repeat(2, minmax(52px, 0.65fr));
  gap: 8px;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px solid var(--reporting-border-subtle);
  color: var(--reporting-copy);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
}

.reporting-preview-table-row span:not(:first-child) { text-align: right; }
.reporting-preview-table-row.is-header { min-height: 43px; color: var(--reporting-faint); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; }
.reporting-preview-table-row:last-child { border-bottom: 0; }

.reporting-preview-boundary {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 9px;
  background: rgba(239, 246, 255, 0.72);
  color: var(--reporting-muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.reporting-preview-boundary > span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--reporting-accent-deep);
  font-size: 0.62rem;
  font-weight: 800;
}

.reporting-surfaces,
.reporting-templates,
.reporting-workflow,
.reporting-control,
.reporting-health,
.reporting-boundaries {
  margin-top: 112px;
}

.reporting-section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.reporting-section-heading-wide { max-width: 900px; }

.reporting-kicker {
  display: inline-block;
  color: var(--reporting-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reporting-section-heading h2,
.reporting-control-copy h2,
.reporting-health-header h2,
.reporting-cta h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.reporting-section-heading p,
.reporting-control-copy > p,
.reporting-health-panel > p,
.reporting-health-aside > p,
.reporting-cta p {
  margin-top: 17px;
  color: var(--reporting-copy);
  font-size: 1rem;
  line-height: 1.7;
}

.reporting-surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reporting-surface-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--reporting-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.reporting-surface-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--reporting-shadow);
}

.reporting-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--reporting-surface-tint);
  color: var(--reporting-accent);
}

.reporting-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reporting-card-index {
  position: absolute;
  top: 32px;
  right: 30px;
  color: var(--reporting-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reporting-surface-card h3 {
  margin-top: 28px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.reporting-surface-card p,
.reporting-template-card p,
.reporting-workflow-grid p,
.reporting-boundary-grid p {
  margin-top: 12px;
  color: var(--reporting-copy);
  font-size: 0.9rem;
  line-height: 1.65;
}

.reporting-surface-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--reporting-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  list-style: none;
}

.reporting-surface-card li {
  position: relative;
  padding-left: 18px;
}

.reporting-surface-card li::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--reporting-teal);
}

.reporting-template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.reporting-template-card {
  min-height: 336px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--reporting-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.reporting-template-card.is-featured {
  border-color: rgba(37, 99, 235, 0.24);
  background: linear-gradient(145deg, rgba(239, 246, 255, 0.82), rgba(255, 255, 255, 0.96) 46%);
}

.reporting-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--reporting-accent-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reporting-template-header i {
  color: var(--reporting-faint);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.reporting-template-card h3 {
  margin-top: 22px;
  font-size: 1.17rem;
}

.reporting-template-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 7px;
  height: 84px;
  margin-top: 25px;
  padding: 12px;
  border: 1px solid var(--reporting-border-subtle);
  border-radius: 9px;
  background: var(--reporting-surface-soft);
}

.reporting-template-mini i {
  display: block;
  height: 48%;
  border-radius: 4px 4px 2px 2px;
  background: #bfdbfe;
}

.reporting-template-mini i:nth-child(2) { height: 76%; background: #93c5fd; }
.reporting-template-mini i:nth-child(3) { height: 58%; background: #a7f3d0; }
.reporting-template-mini i:nth-child(4) { height: 88%; background: #60a5fa; }
.reporting-template-mini.is-bars i { border-radius: 2px; background: #cbd5e1; }
.reporting-template-mini.is-bars i:nth-child(2), .reporting-template-mini.is-bars i:nth-child(4) { background: #5eead4; }
.reporting-template-mini.is-table { grid-template-columns: 1fr; align-items: stretch; }
.reporting-template-mini.is-table i { height: auto; border-radius: 1px; background: #e2e8f0; }
.reporting-template-mini.is-table i:first-child { background: #cbd5e1; }
.reporting-template-mini.is-split { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; align-items: stretch; }
.reporting-template-mini.is-split i { height: auto; border-radius: 3px; background: #dbeafe; }
.reporting-template-mini.is-split i:nth-child(2), .reporting-template-mini.is-split i:nth-child(3) { background: #ccfbf1; }

.reporting-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--reporting-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--reporting-border);
  gap: 1px;
}

.reporting-workflow-grid article {
  display: flex;
  gap: 18px;
  min-height: 216px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.reporting-workflow-grid article > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: var(--reporting-surface-tint);
  color: var(--reporting-accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
}

.reporting-workflow-grid h3 {
  margin-top: 4px;
  font-size: 1rem;
}

.reporting-control {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid var(--reporting-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(248, 250, 252, 0.88));
  box-shadow: var(--reporting-shadow);
}

.reporting-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--reporting-accent-deep);
  font-size: 0.85rem;
  font-weight: 750;
}

.reporting-text-link:hover { color: var(--reporting-accent); }

.reporting-control-table {
  overflow: hidden;
  border: 1px solid var(--reporting-border);
  border-radius: 12px;
  background: #ffffff;
}

.reporting-control-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border-bottom: 1px solid var(--reporting-border-subtle);
}

.reporting-control-row:last-child { border-bottom: 0; }

.reporting-control-row span {
  padding: 15px 17px;
  color: var(--reporting-copy);
  font-size: 0.76rem;
  line-height: 1.45;
}

.reporting-control-row span:first-child {
  border-right: 1px solid var(--reporting-border-subtle);
  color: var(--reporting-ink);
  font-weight: 700;
}

.reporting-control-row.is-header span {
  background: var(--reporting-surface-soft);
  color: var(--reporting-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reporting-health {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.52fr);
  gap: 14px;
}

.reporting-health-panel,
.reporting-health-aside {
  border: 1px solid var(--reporting-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.reporting-health-panel { padding: 34px; }
.reporting-health-aside { padding: 34px; }

.reporting-health-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.reporting-health-header h2 { max-width: 680px; }

.reporting-health-status {
  border-color: rgba(180, 83, 9, 0.16);
  background: #fffbeb;
  color: var(--reporting-warning);
}

.reporting-health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.reporting-health-grid article {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--reporting-border);
  border-radius: 10px;
  background: var(--reporting-surface-soft);
}

.reporting-health-grid span,
.reporting-health-grid small,
.reporting-health-source small {
  color: var(--reporting-faint);
  font-size: 0.65rem;
  font-weight: 650;
}

.reporting-health-grid strong {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.reporting-health-source {
  display: grid;
  grid-template-columns: minmax(160px, 1.25fr) 0.6fr repeat(3, minmax(82px, 0.7fr));
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--reporting-border);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 650;
}

.reporting-health-source > div,
.reporting-health-source > span:not(.reporting-health-chip) {
  display: grid;
  gap: 4px;
}

.reporting-health-source > div span { color: var(--reporting-faint); font-size: 0.66rem; }

.reporting-health-chip {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fffbeb;
  color: var(--reporting-warning);
  font-size: 0.65rem;
}

.reporting-health-aside h3 {
  margin-top: 14px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.reporting-health-aside ul {
  display: grid;
  gap: 0;
  margin-top: 22px;
  list-style: none;
}

.reporting-health-aside li {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid var(--reporting-border-subtle);
  color: var(--reporting-copy);
  font-size: 0.76rem;
  line-height: 1.45;
}

.reporting-health-aside li:last-child { border-bottom: 0; }
.reporting-health-aside li span { color: var(--reporting-ink); font-weight: 750; }

.reporting-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reporting-boundary-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 16px;
  padding: 26px;
  border: 1px solid var(--reporting-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.reporting-boundary-grid article > span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--reporting-muted);
  font-size: 1rem;
  font-weight: 700;
}

.reporting-boundary-grid h3 { margin-top: 4px; font-size: 1rem; }
.reporting-boundary-grid p { grid-column: 2; }

.reporting-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 112px;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid var(--reporting-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(37, 99, 235, 0.09), transparent 22rem),
    radial-gradient(circle at 12% 100%, rgba(15, 118, 110, 0.08), transparent 24rem),
    #ffffff;
  box-shadow: var(--reporting-shadow);
}

.reporting-cta > div:first-child { max-width: 860px; }
.reporting-cta-actions { flex: 0 0 auto; margin-top: 0; }

@media (max-width: 1180px) {
  html:not(.app-route-document) .reporting-dashboards-page { width: min(100% - 48px, 1120px); }
  .reporting-hero { grid-template-columns: 1fr; min-height: auto; }
  .reporting-hero-copy { max-width: 880px; }
  .reporting-hero-copy h1 { max-width: 900px; }
  .reporting-workspace-preview { max-width: 900px; }
  .reporting-template-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reporting-control { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  html:not(.app-route-document) .reporting-dashboards-page { width: calc(100% - 32px); padding-top: 112px; }
  .reporting-surface-grid,
  .reporting-workflow-grid { grid-template-columns: 1fr 1fr; }
  .reporting-health { grid-template-columns: 1fr; }
  .reporting-health-source { grid-template-columns: minmax(140px, 1.3fr) repeat(2, 0.7fr); }
  .reporting-health-source > span:nth-last-child(-n+2) { display: none; }
  .reporting-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  html:not(.app-route-document) .reporting-dashboards-page { width: calc(100% - 24px); padding-bottom: 72px; }
  .reporting-hero { gap: 36px; padding-bottom: 36px; }
  .reporting-hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .reporting-preview-kpis { grid-template-columns: 1fr 1fr; }
  .reporting-preview-kpis article:last-child { display: none; }
  .reporting-preview-grid { grid-template-columns: 1fr; }
  .reporting-preview-table { display: none; }
  .reporting-preview-controls span:last-child { display: none; }
  .reporting-surface-grid,
  .reporting-template-grid,
  .reporting-workflow-grid,
  .reporting-boundary-grid { grid-template-columns: 1fr; }
  .reporting-surface-card { min-height: auto; }
  .reporting-workflow-grid article { min-height: auto; }
  .reporting-control,
  .reporting-health-panel,
  .reporting-health-aside,
  .reporting-cta { padding: 26px; }
  .reporting-control-row { grid-template-columns: 0.82fr 1.18fr; }
  .reporting-control-row span { padding: 12px; font-size: 0.69rem; }
  .reporting-health-grid { grid-template-columns: 1fr 1fr; }
  .reporting-health-header { align-items: flex-start; flex-direction: column; }
  .reporting-health-source { grid-template-columns: 1fr auto; }
  .reporting-health-source > span:not(.reporting-health-chip) { display: none; }
  .reporting-surfaces,
  .reporting-templates,
  .reporting-workflow,
  .reporting-control,
  .reporting-health,
  .reporting-boundaries,
  .reporting-cta { margin-top: 80px; }
}

@media (max-width: 420px) {
  .reporting-hero-actions,
  .reporting-cta-actions { display: grid; width: 100%; }
  .reporting-hero-actions .btn,
  .reporting-cta-actions .btn { width: 100%; }
  .reporting-workspace-preview { padding: 10px; }
  .reporting-preview-title { font-size: 0.75rem; }
  .reporting-control-row { grid-template-columns: 1fr; }
  .reporting-control-row span:first-child { border-right: 0; border-bottom: 1px solid var(--reporting-border-subtle); }
  .reporting-control-row.is-header { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reporting-surface-card { transition: none; }
}
