@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

:root {
  --bg-top: #f8fbff;
  --bg-mid: #eef4fb;
  --bg-bottom: #e5edf6;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --ink: #0f2136;
  --muted: #4d6378;
  --line: rgba(16, 46, 76, 0.14);
  --accent: #00667f;
  --accent-strong: #0a4e75;
  --warning: #9a2f17;
  --positive: #16613f;
  --shadow: 0 22px 54px rgba(14, 33, 58, 0.12);
  --shadow-soft: 0 10px 26px rgba(14, 33, 58, 0.08);
  --radius-lg: 24px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(0, 102, 127, 0.18), transparent 24%),
    radial-gradient(circle at 92% 0%, rgba(10, 78, 117, 0.14), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 40%, var(--bg-bottom) 100%);
}

.shell {
  width: min(1240px, calc(100% - 38px));
  margin: 0 auto;
  padding: 26px 0 52px;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 8px 2px;
  animation: fade-up 320ms ease both;
}

.brand-left,
.brand-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 14px;
  transition: transform 160ms ease, box-shadow 180ms ease;
}

.brand-logo-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 184px;
  height: auto;
  max-width: 42vw;
}

.brand-title {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero,
.workspace,
.portal-history-layout,
.registry-section,
.admin-layout {
  display: grid;
  gap: 20px;
}

.hero {
  grid-template-columns: 1.25fr 0.9fr;
  align-items: stretch;
  margin-bottom: 22px;
  animation: fade-up 360ms ease both;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 332px;
  border-radius: var(--radius-lg);
  background-color: #17344f;
  --hero-image: none;
  background-image:
    linear-gradient(135deg, rgba(7, 27, 46, 0.08), rgba(7, 27, 46, 0.22)),
    var(--hero-image);
  background-position: center, center 42%;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(16, 46, 76, 0.12);
  box-shadow: var(--shadow);
}

.hero-image-card--pulmonology {
  --hero-image: url("/static/Images-Reuse/Pulmonology-Identifier-HeroImage.png");
}

.hero-image-card--dermatology {
  --hero-image: url("/static/Images-Reuse/Dermatology-Identifier-HeroImagge.png");
}

.hero-image-card--oncology {
  --hero-image: url("/static/Images-Reuse/Oncology-Identifier-HeroImage.png");
}

.hero-image-card--breast-cancer {
  --hero-image: url("/static/Images-Reuse/BreastCancer-Identifier-HeroImage.png");
}

.hero-image-card--ophthalmology {
  --hero-image: url("/static/Images-Reuse/opthalmology-Identifier-HeroImage.png");
}

.hero-image-card--labs {
  --hero-image: url("/static/Images-Reuse/Labsworkspace-Identifier-HeroImage.png");
}

.hero-image-card--labs .hero-image-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(248, 252, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-image-card--labs .hero-profile-cloud {
  margin-top: 0;
  gap: 8px;
}

.hero-image-card--labs .hero-profile-chip {
  padding: 8px 12px;
  font-size: 0.76rem;
  box-shadow: 0 8px 18px rgba(14, 33, 58, 0.07);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 32, 54, 0.08), rgba(8, 32, 54, 0.14)),
    linear-gradient(90deg, rgba(8, 32, 54, 0.06), rgba(8, 32, 54, 0.16));
  pointer-events: none;
}

.shell[data-portal-organ="labs"] .hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.shell[data-portal-organ="labs"] .hero-copy .eyebrow,
.shell[data-portal-organ="labs"] .hero-copy h1,
.shell[data-portal-organ="labs"] .hero-copy .hero-text {
  margin-bottom: 0;
}

.workspace {
  grid-template-columns: 0.95fr 1.2fr;
  margin-bottom: 22px;
  animation: fade-up 420ms ease both;
}

.portal-history-layout {
  grid-template-columns: 1fr;
  animation: fade-up 480ms ease both;
}

.organ-switch-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.organ-switch-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(16, 46, 76, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.organ-switch-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.organ-switch-link-active {
  border-color: rgba(0, 102, 127, 0.34);
  color: var(--accent-strong);
  background: rgba(0, 102, 127, 0.11);
}

.portal-home-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 22px;
  padding: 24px;
  animation: fade-up 320ms ease both;
}

.portal-home-copy h1 {
  margin: 0 0 12px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.portal-home-metrics {
  display: grid;
  gap: 10px;
  align-content: start;
}

.organ-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  animation: fade-up 380ms ease both;
}

.organ-card {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.organ-card h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.organ-card p {
  margin: 0;
}

.organ-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 6px;
}

.organ-stat-cell {
  padding: 8px 9px;
  min-height: 72px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.organ-stat-cell span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.organ-stat-cell strong {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.93rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.organ-capability {
  position: relative;
}

.organ-capability-chip {
  font-size: 0.78rem;
  cursor: default;
}

.organ-disease-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(420px, 90vw);
  display: none;
  z-index: 30;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.16);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.organ-capability:hover .organ-disease-popover,
.organ-capability:focus-within .organ-disease-popover {
  display: block;
}

.organ-disease-popover h4 {
  margin: 0 0 6px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.organ-disease-popover p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.organ-disease-popover p:last-child {
  margin-bottom: 0;
}

.organ-card-active {
  border-color: rgba(0, 102, 127, 0.34);
  box-shadow: 0 22px 54px rgba(14, 33, 58, 0.14);
}

.organ-card-action {
  margin-top: 4px;
}

.portal-preview {
  padding: 30px 28px;
  animation: fade-up 320ms ease both;
}

.portal-preview h1 {
  margin: 0 0 12px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.portal-preview-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyes-subtrack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.eyes-subtrack-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.eyes-subtrack-card h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.eyes-subtrack-card-active {
  border-color: rgba(0, 102, 127, 0.34);
  box-shadow: 0 22px 54px rgba(14, 33, 58, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92));
}

.eyes-portfolio-band {
  margin-top: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.eyes-portfolio-band h2 {
  margin: 0 0 8px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.eyes-portfolio-metrics {
  display: grid;
  gap: 10px;
}

.portal-history-card {
  max-width: 100%;
}

.history-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.history-toolbar input,
.history-toolbar select {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.2);
  background: var(--panel-strong);
  font: inherit;
  color: var(--ink);
}

.hero-copy h1,
.section-head h2,
.model-card h3 {
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.02;
  max-width: 16ch;
}

.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-strong);
  font-weight: 600;
  margin: 0 0 10px;
}

.hero-text,
.muted,
.field span,
table {
  color: var(--muted);
}

.status-idle {
  color: var(--muted);
}

.status-reviewing {
  color: var(--accent-strong);
  font-weight: 600;
}

.status-complete {
  color: var(--positive);
  font-weight: 600;
}

.status-error {
  color: var(--warning);
  font-weight: 600;
}

.hero-text {
  max-width: 56ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.62;
}

.status-stack,
.admin-layout {
  display: grid;
  gap: 20px;
}

.hero-profile-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 102, 127, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 251, 0.94));
}

.hero-profile-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 78, 117, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-profile-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-profile-header h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-profile-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 127, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

.hero-profile-summary {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-profile-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
  margin-top: 6px;
}

.hero-profile-chip {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(14, 33, 58, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-profile-chip:hover {
  border-color: rgba(0, 102, 127, 0.22);
  box-shadow: 0 14px 26px rgba(14, 33, 58, 0.1);
  transform: translateY(-1px);
}

.hero-profile-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 4px rgba(0, 102, 127, 0.08);
}

.reporting-page-layout {
  display: grid;
  gap: 20px;
}

.admin-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  animation: fade-up 340ms ease both;
}

.admin-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(16, 46, 76, 0.16);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-nav-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.admin-nav-link-active {
  border-color: rgba(0, 102, 127, 0.34);
  color: var(--accent-strong);
  background: rgba(0, 102, 127, 0.12);
}

.card {
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.status-card,
.control-card,
.results-card,
.model-card,
.admin-card,
.info-card {
  padding: 24px;
}

.metric-value {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 2.05rem;
  line-height: 1.08;
  margin-bottom: 8px;
}

.compact-status .metric-value {
  font-size: 1.45rem;
}

.ghost-button,
.primary-button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-decoration: none;
  background: rgba(0, 102, 127, 0.11);
  color: var(--accent-strong);
  border: 1px solid rgba(0, 102, 127, 0.18);
  font-weight: 500;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #f5fbff;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(0, 102, 127, 0.28);
  text-decoration: none;
}

.ghost-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
}

.ghost-button:focus-visible,
.primary-button:focus-visible,
.clinical-feedback-choice:focus-visible,
.organ-switch-link:focus-visible,
.site-nav-link:focus-visible,
.admin-nav-link:focus-visible,
.brand-logo-link:focus-visible,
.reporting-finding-button:focus-visible,
.organ-filter-button:focus-visible {
  outline: 3px solid rgba(0, 102, 127, 0.22);
  outline-offset: 3px;
}

.ghost-button:disabled,
.primary-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.section-head {
  margin-bottom: 16px;
}

.compact-section-head {
  margin: 6px 0 10px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.32rem;
}

.compact-section-head h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink);
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.02em;
}

.form-note {
  margin: -2px 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.response-pdf-panel {
  margin-bottom: 18px;
  padding: 16px 18px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.wide-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-checkbox {
  align-content: start;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.2);
  background: var(--panel-strong);
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 102, 127, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 102, 127, 0.14);
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-frame {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px dashed rgba(16, 46, 76, 0.24);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.7), rgba(228, 237, 246, 0.8)),
    linear-gradient(180deg, #edf3f9 0%, #d9e4f0 100%);
  margin-bottom: 16px;
}

#image-preview {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preview-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(15, 33, 54, 0.58);
  font-size: 0.95rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.summary-cell {
  padding: 13px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 46, 76, 0.12);
}

.summary-cell span,
.metric-list dt {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.summary-cell strong {
  font-size: 1rem;
  color: var(--ink);
}

.finding-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
}

.clinical-feedback-card {
  margin-bottom: 18px;
  border-color: rgba(0, 102, 127, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94));
}

.clinical-feedback-field-group {
  margin-bottom: 16px;
}

.clinical-feedback-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.clinical-feedback-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clinical-feedback-choice {
  border: 1px solid rgba(16, 46, 76, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.clinical-feedback-choice:hover,
.clinical-feedback-choice.is-selected {
  border-color: rgba(0, 102, 127, 0.32);
  box-shadow: 0 10px 20px rgba(0, 102, 127, 0.12);
}

.clinical-feedback-choice.is-selected {
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
}

.clinical-feedback-followup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.clinical-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.clinical-feedback-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 14px 0 12px;
}

.clinical-feedback-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(248, 251, 255, 0.92);
  border: 1px solid rgba(16, 46, 76, 0.1);
  color: var(--ink);
  line-height: 1.55;
}

.chip,
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 500;
}

.chip {
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
}

.chip-positive {
  background: rgba(22, 97, 63, 0.14);
  color: var(--positive);
}

.chip-elevated {
  background: rgba(176, 116, 12, 0.16);
  color: #8a5800;
}

.chip-critical {
  background: rgba(169, 59, 34, 0.16);
  color: #9a2f17;
}

.chip-warning {
  background: rgba(154, 47, 23, 0.12);
  color: var(--warning);
}

.chip-neutral {
  background: rgba(77, 99, 120, 0.16);
  color: #324960;
}

.badge {
  padding: 6px 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.badge-production {
  background: rgba(22, 97, 63, 0.14);
  color: var(--positive);
}

.badge-staging {
  background: rgba(154, 47, 23, 0.12);
  color: var(--warning);
}

.info-list {
  display: grid;
  gap: 13px;
}

.info-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 46, 76, 0.12);
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 46, 76, 0.14);
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.14);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 46, 76, 0.1);
}

th {
  color: var(--ink);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.empty-table,
.error-text {
  color: var(--warning);
}

.error-text {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.registry-section {
  gap: 16px;
  margin-bottom: 22px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.admin-model-list,
.history-list {
  display: grid;
  gap: 12px;
}

.admin-card-wide {
  grid-column: 1 / -1;
}

.admin-model-item,
.history-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 46, 76, 0.12);
}

.history-item-button {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: inherit;
  font: inherit;
  padding: 16px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.history-item-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.28);
  box-shadow: 0 8px 20px rgba(14, 33, 58, 0.08);
}

.history-item-button-active {
  border-color: rgba(0, 102, 127, 0.36);
  box-shadow: inset 0 0 0 1px rgba(0, 102, 127, 0.2);
}

.history-grid-row-active td {
  background: rgba(0, 102, 127, 0.08);
}

.history-action-cell {
  position: relative;
  min-width: 96px;
}

.history-open-button {
  padding: 7px 12px;
  font-size: 0.82rem;
}

.history-hover-preview {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, 70vw);
  background: #ffffff;
  border: 1px solid rgba(16, 46, 76, 0.16);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  z-index: 30;
  display: none;
}

.history-hover-preview p {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.history-hover-preview p:last-child {
  margin-bottom: 0;
}

.history-action-cell:hover .history-hover-preview,
.history-action-cell:focus-within .history-hover-preview {
  display: block;
}

.history-pagination {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-model-item-active {
  border-color: rgba(22, 97, 63, 0.28);
  box-shadow: inset 0 0 0 1px rgba(22, 97, 63, 0.16);
}

.admin-model-head,
.history-item-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 8px;
}

.admin-model-badge-stack {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.admin-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.87rem;
  margin: 9px 0 12px;
}

.admin-model-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.admin-control-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.admin-control-group-danger {
  border-color: rgba(154, 47, 23, 0.18);
  background: rgba(154, 47, 23, 0.04);
}

.admin-control-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.inline-field {
  margin-bottom: 0;
}

.admin-visibility-field span {
  font-size: 0.78rem;
}

.admin-visibility-reason {
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.2);
  background: var(--panel-strong);
  font: inherit;
  color: var(--ink);
}

.admin-visibility-reason:focus {
  outline: none;
  border-color: rgba(0, 102, 127, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 102, 127, 0.14);
}

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

.compare-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.compare-summary-card {
  margin-bottom: 12px;
}

.compare-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.compare-delta-positive {
  color: var(--positive);
  font-weight: 700;
}

.compare-delta-negative {
  color: var(--warning);
  font-weight: 700;
}

.compare-delta-neutral {
  color: var(--muted);
  font-weight: 600;
}

.audit-timeline-list {
  display: grid;
  gap: 12px;
}

.audit-timeline-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 46, 76, 0.12);
}

.audit-timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 8px;
}

.history-empty {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
}

.reporting-launch-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 237, 246, 0.76));
}

.reporting-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.organ-stats-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.reporting-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-bottom: 10px;
}

.reporting-field {
  margin-bottom: 0;
  min-width: 170px;
  flex: 1 1 170px;
}

.reporting-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 10px 0 12px;
}

.reporting-kpi-card {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(229, 237, 246, 0.68));
}

.reporting-kpi-card strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  margin-bottom: 4px;
  color: var(--ink);
}

.reporting-insights {
  display: grid;
  gap: 8px;
  margin: 10px 0 12px;
}

.reporting-insight-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reporting-insight-spike {
  border-color: rgba(22, 97, 63, 0.26);
  color: var(--positive);
}

.reporting-insight-drop {
  border-color: rgba(154, 47, 23, 0.26);
  color: var(--warning);
}

.reporting-insight-info {
  border-color: rgba(0, 102, 127, 0.24);
  color: var(--accent-strong);
}

.reporting-chip-button {
  cursor: pointer;
}

.reporting-chip-active {
  border-color: rgba(0, 102, 127, 0.36);
  background: rgba(0, 102, 127, 0.16);
  color: var(--accent-strong);
}

.reporting-warning-tag {
  border-color: rgba(154, 47, 23, 0.26);
  color: var(--warning);
  background: rgba(154, 47, 23, 0.08);
}

.organ-bar-item {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.organ-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.organ-filter-button {
  border: 1px solid rgba(16, 46, 76, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.organ-filter-button-active {
  border-color: rgba(0, 102, 127, 0.34);
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
}

.organ-bar-track {
  display: flex;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(77, 99, 120, 0.2);
}

.organ-bar-positive {
  display: block;
  height: 100%;
  background: rgba(22, 97, 63, 0.82);
}

.organ-bar-negative {
  display: block;
  height: 100%;
  background: rgba(154, 47, 23, 0.74);
}

.organ-trend-wrap {
  border: 1px solid rgba(16, 46, 76, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.organ-trend-title {
  margin: 0 0 10px;
  font-size: 0.96rem;
  color: var(--ink);
}

.organ-trend-svg {
  width: 100%;
  height: auto;
  display: block;
}

.trend-axis {
  stroke: rgba(16, 46, 76, 0.34);
  stroke-width: 1;
}

.trend-line-positive {
  fill: none;
  stroke: rgba(22, 97, 63, 0.9);
  stroke-width: 2.5;
}

.trend-line-negative {
  fill: none;
  stroke: rgba(154, 47, 23, 0.84);
  stroke-width: 2.5;
}

.trend-label {
  fill: var(--muted);
  font-size: 11px;
}

.trend-label-mid {
  text-anchor: middle;
}

.trend-label-end {
  text-anchor: end;
}

.trend-key {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

.trend-key-positive {
  background: rgba(22, 97, 63, 0.9);
}

.trend-key-negative {
  background: rgba(154, 47, 23, 0.84);
}

.reporting-finding-button {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.reporting-finding-row-active td {
  background: rgba(0, 102, 127, 0.08);
}

.reporting-finding-detail {
  margin-top: 12px;
}

.reporting-finding-detail-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px;
}

.reporting-finding-detail-card h3 {
  margin: 0 0 6px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.15rem;
  color: var(--ink);
}

.reporting-shell {
  position: relative;
}

.reporting-brand-right {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reporting-user-tag {
  max-width: min(320px, 70vw);
  justify-content: center;
}

.reporting-header-card,
.reporting-filter-card,
.reporting-chart-panel,
.reporting-heatmap-panel,
.reporting-insight-card,
.reporting-timeline-card,
.reporting-state-card {
  padding: 24px;
}

.reporting-header-card {
  margin-bottom: 18px;
}

.reporting-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.72fr);
  gap: 20px;
  align-items: start;
}

.reporting-header-copy h1 {
  margin: 0 0 12px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.reporting-header-status {
  display: grid;
  gap: 12px;
}

.reporting-status-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(233, 241, 249, 0.84));
}

.reporting-scope-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 10px;
}

.reporting-status-copy {
  margin: 0;
  line-height: 1.55;
}

.reporting-status-meta {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.reporting-dashboard-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.reporting-dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(16, 46, 76, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reporting-dashboard-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.reporting-dashboard-link-active {
  border-color: rgba(0, 102, 127, 0.34);
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
}

.reporting-filter-card {
  margin-bottom: 18px;
  position: sticky;
  top: 12px;
  z-index: 6;
  backdrop-filter: blur(12px);
}

.reporting-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
}

.reporting-filter-head h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--ink);
}

.reporting-filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: end;
}

.reporting-shell-field {
  margin-bottom: 0;
}

.reporting-filter-actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  min-height: 100%;
}

.reporting-filter-summary {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reporting-filter-summary-button {
  border: 1px solid rgba(16, 46, 76, 0.12);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.reporting-filter-summary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.24);
  box-shadow: var(--shadow-soft);
}

.reporting-filter-note {
  margin: 10px 0 0;
  font-size: 0.84rem;
}

.reporting-context-card {
  margin-bottom: 18px;
  padding: 16px 18px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(238, 245, 251, 0.94));
}

.reporting-status-banner {
  margin-bottom: 18px;
  padding: 14px 18px;
  background:
    linear-gradient(180deg, rgba(245, 249, 253, 0.96), rgba(235, 243, 249, 0.94));
}

.reporting-status-banner-body {
  display: grid;
  gap: 4px;
}

.reporting-status-banner-body p {
  margin: 0;
}

.reporting-status-banner-warning {
  border-color: rgba(154, 47, 23, 0.18);
  background:
    linear-gradient(180deg, rgba(252, 246, 242, 0.98), rgba(248, 238, 233, 0.94));
}

.reporting-status-banner-info {
  border-color: rgba(0, 102, 127, 0.18);
}

.reporting-status-banner-neutral {
  border-color: rgba(16, 46, 76, 0.12);
}

.reporting-context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.reporting-context-group {
  display: grid;
  gap: 8px;
}

.reporting-context-group .card-label {
  margin: 0;
}

.reporting-context-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reporting-context-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.reporting-context-chip-button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.reporting-context-chip-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.26);
  box-shadow: var(--shadow-soft);
}

.reporting-trail-chip {
  border-color: rgba(0, 102, 127, 0.18);
  background: rgba(0, 102, 127, 0.08);
  color: var(--accent-strong);
}

.reporting-page-body {
  display: grid;
  gap: 18px;
  padding-bottom: 4px;
}

.sql-workbench-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(520px, 1.78fr) minmax(250px, 0.74fr);
  gap: 18px;
  align-items: stretch;
}

.sql-panel,
.sql-results-panel {
  padding: 20px;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.sql-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sql-database-panel::before,
.sql-editor-panel::before,
.sql-table-panel::before,
.sql-results-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(0, 102, 127, 0.9), rgba(10, 78, 117, 0.65), rgba(0, 102, 127, 0.18));
  opacity: 0.92;
}

.sql-editor-panel::before {
  background: linear-gradient(90deg, rgba(10, 78, 117, 0.92), rgba(0, 102, 127, 0.52), rgba(0, 102, 127, 0.12));
}

.sql-table-panel::before {
  background: linear-gradient(90deg, rgba(22, 97, 63, 0.9), rgba(0, 102, 127, 0.5), rgba(22, 97, 63, 0.12));
}

.sql-results-panel::before {
  background: linear-gradient(90deg, rgba(16, 46, 76, 0.72), rgba(0, 102, 127, 0.34), rgba(16, 46, 76, 0.08));
}

.sql-catalog-list {
  display: grid;
  grid-auto-rows: min-content;
  gap: 9px;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-gutter: stable;
  overscroll-behavior: contain;
  align-content: start;
}

.sql-database-panel,
.sql-table-panel {
  min-height: 0;
  position: relative;
  max-height: calc(100vh - 236px);
}

.sql-catalog-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sql-catalog-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.22);
  box-shadow: var(--shadow-soft);
}

.sql-catalog-item-active {
  border-color: rgba(0, 102, 127, 0.28);
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.98), rgba(232, 244, 251, 0.98));
}

.sql-catalog-item-label {
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sql-catalog-item .tag {
  flex: 0 0 auto;
  padding: 5px 9px;
  font-size: 0.72rem;
  line-height: 1.1;
}

.sql-editor-fields {
  display: grid;
  gap: 14px;
}

.sql-editor-field textarea {
  min-height: 280px;
  resize: vertical;
  font-family: "SFMono-Regular", "SF Mono", "Consolas", "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.55;
}

.sql-editor-fields input {
  font-family: "Sora", "Avenir Next", sans-serif;
}

.sql-policy-copy,
.sql-status-copy,
.sql-results-summary {
  margin: 0;
}

.sql-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sql-results-panel {
  display: grid;
  gap: 14px;
}

.sql-table-panel {
  display: flex;
  flex-direction: column;
}

.sql-table-panel .sql-catalog-list {
  flex: 1;
  max-height: clamp(220px, 34vh, 320px);
}

.sql-database-panel .sql-catalog-list {
  flex: 1;
  max-height: clamp(140px, 22vh, 220px);
}

.sql-table-panel .sql-catalog-item {
  padding: 8px 10px;
  gap: 8px;
}

.sql-table-panel .sql-catalog-item-label {
  font-size: 0.76rem;
  font-weight: 550;
  line-height: 1.18;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}

.sql-table-panel .sql-catalog-item .tag {
  padding: 3px 7px;
  font-size: 0.63rem;
  letter-spacing: 0.01em;
}

.sql-database-panel .sql-catalog-item {
  padding: 10px 11px;
}

.sql-database-panel .sql-catalog-item-label {
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}

.sql-database-panel .sql-catalog-item .tag {
  padding: 4px 8px;
  font-size: 0.68rem;
}

.sql-results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sql-results-table-wrap {
  background: rgba(255, 255, 255, 0.82);
  max-height: clamp(460px, 54vh, 560px);
  overflow: auto;
}

.sql-results-table {
  width: max-content;
  min-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}

.sql-results-table th,
.sql-results-table td {
  padding: 10px 12px;
  vertical-align: top;
  white-space: nowrap;
}

.sql-results-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(241, 246, 252, 0.98));
  box-shadow: 0 1px 0 rgba(16, 46, 76, 0.08), 0 10px 18px rgba(14, 33, 58, 0.04);
  overflow: visible;
  text-overflow: clip;
  padding-right: 22px;
}

.sql-results-table tbody td {
  font-size: 0.9rem;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sql-results-table tbody tr {
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.sql-results-table tbody tr:hover {
  background: rgba(0, 102, 127, 0.06);
}

.sql-results-table tbody tr:active {
  transform: scale(0.999);
}

.sql-result-header-label {
  display: block;
  padding-right: 14px;
}

.sql-column-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
  cursor: col-resize;
  touch-action: none;
}

.sql-column-resizer::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 7px;
  width: 1px;
  background: rgba(16, 46, 76, 0.16);
}

body.sql-resizing-columns,
body.sql-resizing-columns * {
  cursor: col-resize !important;
  user-select: none !important;
}

.sql-empty-state {
  padding: 18px 0;
}

.reporting-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.reporting-content-main,
.reporting-content-side {
  display: grid;
  gap: 18px;
}

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

.reporting-table-panel {
  padding: 24px;
}

.reporting-heatmap-panel {
  padding: 24px;
}

.reporting-chart-panel-wide {
  grid-column: 1 / -1;
}

.reporting-shell .reporting-kpi-grid {
  margin: 0;
  gap: 14px;
}

.reporting-shell .reporting-kpi-card {
  padding: 18px;
  display: grid;
  gap: 8px;
  min-height: 210px;
}

.reporting-kpi-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.reporting-kpi-card-accent {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(225, 241, 246, 0.92));
}

.reporting-kpi-card-positive {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 237, 0.94));
}

.reporting-kpi-card-warning {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 238, 233, 0.94));
}

.reporting-kpi-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.reporting-kpi-caption {
  margin: 0;
  line-height: 1.55;
}

.reporting-kpi-action {
  margin-top: auto;
  justify-self: start;
}

.reporting-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.reporting-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.reporting-panel-head h2,
.reporting-state-inner h3,
.reporting-drawer-head h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.reporting-panel-copy {
  margin: 0 0 14px;
  line-height: 1.58;
}

.reporting-chart-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 252px;
}

.reporting-chart-point {
  position: relative;
  border: 1px solid rgba(16, 46, 76, 0.12);
  border-radius: calc(var(--radius-md) + 2px);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  min-height: 216px;
  padding: 12px 10px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  align-items: end;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reporting-chart-point:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 127, 0.28);
  box-shadow: var(--shadow-soft);
}

.reporting-chart-point::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  min-width: 160px;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(14, 33, 58, 0.94);
  color: #f6fbff;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(14, 33, 58, 0.24);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 2;
}

.reporting-chart-point:hover::after,
.reporting-chart-point:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reporting-chart-point-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
}

.reporting-heatmap-grid {
  display: grid;
  grid-template-columns: minmax(88px, auto) repeat(var(--heat-columns, 6), minmax(72px, 1fr));
  gap: 8px;
  align-items: center;
}

.reporting-heatmap-corner,
.reporting-heatmap-column-label,
.reporting-heatmap-row-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.reporting-heatmap-column-label {
  text-align: center;
}

.reporting-heatmap-row-label {
  padding-right: 8px;
}

.reporting-heatmap-cell {
  position: relative;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(16, 46, 76, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(0, 102, 127, calc(0.12 + (var(--heat-intensity) / 160))),
      rgba(10, 78, 117, calc(0.08 + (var(--heat-intensity) / 180)))
    );
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.reporting-heatmap-cell:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.28);
  box-shadow: var(--shadow-soft);
}

.reporting-heatmap-cell span {
  font-size: 0.8rem;
  font-weight: 600;
}

.reporting-heatmap-cell::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  min-width: 160px;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(14, 33, 58, 0.94);
  color: #f6fbff;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(14, 33, 58, 0.24);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 2;
}

.reporting-heatmap-cell:hover::after,
.reporting-heatmap-cell:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reporting-chart-point-top {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.9rem;
  line-height: 1.12;
  color: var(--accent-strong);
}

.reporting-chart-point-mode {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 102, 127, 0.08);
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reporting-chart-point-bar-wrap {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 10px 0 0;
}

.reporting-chart-point-bar {
  width: 100%;
  min-height: 14px;
  border-radius: 14px 14px 8px 8px;
  background:
    linear-gradient(180deg, rgba(0, 102, 127, 0.9), rgba(10, 78, 117, 0.82));
}

.reporting-chart-point-label {
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reporting-interaction-hint {
  margin: 12px 0 0;
  font-size: 0.84rem;
}

.reporting-insight-list {
  display: grid;
  gap: 10px;
}

.reporting-insight-row {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.reporting-insight-row strong {
  display: block;
  margin-bottom: 6px;
}

.reporting-insight-row p {
  margin: 0;
}

.reporting-insight-tone-positive {
  border-color: rgba(22, 97, 63, 0.24);
}

.reporting-insight-tone-warning {
  border-color: rgba(154, 47, 23, 0.24);
}

.reporting-insight-tone-info {
  border-color: rgba(0, 102, 127, 0.24);
}

.reporting-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.reporting-timeline-item {
  position: relative;
  padding-left: 18px;
}

.reporting-timeline-item::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(0, 102, 127, 0.14);
}

.reporting-timeline-button {
  position: relative;
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px 14px 14px 16px;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reporting-timeline-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 102, 127, 0.28);
  box-shadow: var(--shadow-soft);
}

.reporting-timeline-button::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 24px;
  bottom: calc(100% + 10px);
  transform: translateY(6px);
  min-width: 180px;
  max-width: 280px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(14, 33, 58, 0.94);
  color: #f6fbff;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(14, 33, 58, 0.24);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 2;
}

.reporting-timeline-button:hover::after,
.reporting-timeline-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.reporting-timeline-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.reporting-timeline-content {
  display: grid;
  gap: 4px;
}

.reporting-timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.reporting-timeline-content span {
  line-height: 1.5;
}

.reporting-state-card {
  min-height: 240px;
  display: grid;
  place-items: center;
}

.reporting-state-card-error {
  border-color: rgba(154, 47, 23, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(248, 238, 233, 0.94));
}

.reporting-state-card-loading {
  border-color: rgba(0, 102, 127, 0.16);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(233, 241, 249, 0.92));
}

.reporting-state-inner {
  max-width: 520px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.reporting-loading-pulse {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.reporting-loading-pulse span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 102, 127, 0.44);
  animation: reporting-pulse 1s ease-in-out infinite;
}

.reporting-loading-pulse span:nth-child(2) {
  animation-delay: 0.12s;
}

.reporting-loading-pulse span:nth-child(3) {
  animation-delay: 0.24s;
}

.reporting-state-inner p {
  margin: 0;
}

.reporting-state-inner .ghost-button {
  justify-self: center;
  margin-top: 4px;
}

.reporting-drawer-shell {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.reporting-drawer-shell-open {
  display: block;
}

.reporting-drawer-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 33, 54, 0.34);
  cursor: pointer;
}

.reporting-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100%;
  overflow-y: auto;
  padding: 24px 24px 28px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(236, 243, 250, 0.98));
  border-left: 1px solid rgba(16, 46, 76, 0.14);
  box-shadow: -18px 0 40px rgba(14, 33, 58, 0.16);
}

.reporting-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.reporting-drawer-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.reporting-drawer .table-wrap {
  margin-top: 16px;
}

.reporting-dashboard-link:focus-visible,
.reporting-filter-summary-button:focus-visible,
.reporting-chart-point:focus-visible,
.reporting-heatmap-cell:focus-visible,
.reporting-timeline-button:focus-visible,
.reporting-context-chip-button:focus-visible,
.reporting-drawer-overlay:focus-visible {
  outline: 3px solid rgba(0, 102, 127, 0.22);
  outline-offset: 3px;
}

.model-card {
  display: grid;
  gap: 14px;
  transform: translateY(10px);
  opacity: 0;
  animation: card-in 420ms ease forwards;
}

.model-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.metric-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.metric-list div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.metric-list dd {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: var(--ink);
}

.empty-card {
  min-height: 180px;
  place-content: center;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reporting-pulse {
  0%,
  80%,
  100% {
    transform: scale(0.82);
    opacity: 0.48;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-public {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 102, 127, 0.22), transparent 24%),
    radial-gradient(circle at 88% 4%, rgba(10, 78, 117, 0.2), transparent 20%),
    radial-gradient(circle at 70% 76%, rgba(16, 89, 132, 0.12), transparent 18%),
    linear-gradient(180deg, #f5f9ff 0%, #eaf2fb 42%, #e0e9f4 100%);
}

.site-shell {
  width: min(1240px, calc(100% - 38px));
  margin: 0 auto;
  padding: 26px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  animation: fade-up 280ms ease both;
  position: relative;
  z-index: 100;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.site-nav-link {
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(16, 46, 76, 0.12);
}

.site-nav-link-active {
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
  border-color: rgba(0, 102, 127, 0.2);
}

.site-header-actions,
.site-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-hero,
.site-page-hero,
.site-section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.site-hero {
  margin-bottom: 22px;
  animation: fade-up 360ms ease both;
}

.site-page-hero {
  margin-bottom: 22px;
  animation: fade-up 340ms ease both;
}

.site-hero-copy h1,
.site-page-hero h1 {
  margin: 0 0 16px;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.site-page-hero h1 {
  max-width: 17ch;
  font-size: clamp(1.85rem, 3.3vw, 3.05rem);
}

.site-hero-visual,
.site-image-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 380px;
}

.site-hero-visual {
  padding: 16px;
}

.site-visual-stack,
.site-image-composition {
  position: relative;
  height: 100%;
}

.site-visual-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 100%;
}

.site-visual-panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 26px 54px rgba(12, 29, 52, 0.16);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.site-visual-panel-primary {
  width: min(392px, 88%);
  padding: 24px;
  background:
    linear-gradient(150deg, rgba(5, 87, 118, 0.92), rgba(9, 56, 99, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  color: #f6fbff;
}

.site-visual-panel-primary h3,
.site-visual-panel-shift h3,
.site-feature-card h3,
.site-copy-card h2,
.site-band-copy h2,
.site-cta h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-visual-panel-primary h3,
.site-visual-panel-primary .muted,
.site-visual-panel-primary .card-label,
.site-visual-panel-shift h3 {
  color: #f6fbff;
}

.site-visual-panel-shift {
  width: min(260px, 62%);
  margin-top: auto;
  align-self: flex-end;
  padding: 18px 18px 20px;
  background: linear-gradient(160deg, rgba(52, 124, 154, 0.84), rgba(24, 52, 87, 0.78));
}

.site-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.site-hero-orb-a {
  width: 164px;
  height: 164px;
  right: -12px;
  top: 18px;
  background: radial-gradient(circle, rgba(247, 181, 78, 0.48), rgba(247, 181, 78, 0.04));
}

.site-hero-orb-b {
  width: 230px;
  height: 230px;
  left: 12px;
  bottom: -42px;
  background: radial-gradient(circle, rgba(0, 102, 127, 0.24), rgba(0, 102, 127, 0.02));
}

.site-photo-hero {
  position: relative;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 34, 57, 0.14), rgba(8, 34, 57, 0.34)),
    linear-gradient(90deg, rgba(8, 34, 57, 0.16), rgba(8, 34, 57, 0.04)),
    url("/static/public_hero_clinical_v2.png") no-repeat 52% 42% / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(0deg, rgba(7, 27, 46, 0.12), rgba(7, 27, 46, 0));
  pointer-events: none;
}

.site-photo-hero-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248, 252, 255, 0.76);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.site-photo-card {
  position: relative;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background-color: #18344f;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 46, 0.12), rgba(7, 27, 46, 0.22)),
    linear-gradient(90deg, rgba(7, 27, 46, 0.14), rgba(7, 27, 46, 0.04));
  pointer-events: none;
}

.site-photo-card--vision {
  background-image: url("/static/public_hero_clinical.png");
  background-position: 18% 18%;
}

.site-photo-card--about {
  background-image: url("/static/public_hero_clinical.png");
  background-position: 18% 16%;
}

.site-photo-card--platform {
  background-image: url("/static/public_hero_clinical_v2.png");
  background-position: 52% 42%;
}

.site-photo-card--contact {
  background-image: url("/static/public_hero_clinical_v2.png");
  background-position: 70% 34%;
}

.site-band,
.site-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  margin-bottom: 22px;
  animation: fade-up 400ms ease both;
}

.site-band {
  background:
    linear-gradient(135deg, rgba(8, 57, 92, 0.94), rgba(10, 102, 127, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: #f4fbff;
}

.site-band .eyebrow,
.site-band .hero-text,
.site-band h2,
.site-band .summary-cell span,
.site-band .summary-cell strong {
  color: #f4fbff;
}

.site-band-metrics {
  display: grid;
  gap: 10px;
}

.site-band .summary-cell {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-section {
  margin-bottom: 22px;
  animation: fade-up 420ms ease both;
}

.site-section-heading {
  margin-bottom: 14px;
}

.site-section-heading h2 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  letter-spacing: -0.03em;
}

.site-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-feature-card,
.site-copy-card {
  padding: 24px;
}

.site-feature-card {
  min-height: 210px;
}

.site-feature-card .primary-button,
.site-feature-card .ghost-button {
  margin-top: 12px;
}

.site-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.58;
}

.site-image-composition {
  display: grid;
  align-content: space-between;
  gap: 16px;
  height: 100%;
  padding: 8px;
  border-radius: 22px;
}

.site-image-composition-datasets {
  background:
    radial-gradient(circle at 20% 18%, rgba(250, 190, 97, 0.38), transparent 24%),
    linear-gradient(160deg, rgba(6, 76, 109, 0.9), rgba(18, 40, 73, 0.92));
}

.site-image-composition-about {
  background:
    radial-gradient(circle at 85% 16%, rgba(116, 215, 199, 0.26), transparent 28%),
    linear-gradient(160deg, rgba(29, 72, 117, 0.92), rgba(11, 38, 73, 0.96));
}

.site-image-composition-platform {
  background:
    radial-gradient(circle at 16% 82%, rgba(240, 126, 92, 0.24), transparent 28%),
    linear-gradient(160deg, rgba(18, 53, 93, 0.96), rgba(0, 102, 127, 0.84));
}

.site-image-composition-contact {
  background:
    radial-gradient(circle at 70% 16%, rgba(246, 188, 94, 0.3), transparent 24%),
    linear-gradient(160deg, rgba(12, 63, 95, 0.96), rgba(23, 95, 118, 0.84));
}

.site-image-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f5fbff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-image-display {
  align-content: end;
  gap: 12px;
  padding: 28px;
  min-height: 100%;
}

.site-image-kicker {
  margin: 0;
  color: rgba(245, 251, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-image-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f6fbff;
  text-wrap: balance;
}

.site-image-note {
  margin: 0;
  max-width: 30ch;
  color: rgba(246, 251, 255, 0.82);
  line-height: 1.58;
}

.site-image-pill-row,
.site-image-pill-column {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.site-image-pill-column {
  flex-direction: column;
  align-items: flex-start;
}

.site-image-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f5fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(9, 26, 45, 0.12);
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* ─────────────────────────────────────────────────
   NAV DROPDOWN — Services menu
───────────────────────────────────────────────── */
.site-nav-has-dropdown {
  position: relative;
}

.site-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 244px;
  background: rgba(248, 252, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 46, 76, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 200;
}

.site-nav-has-dropdown:hover .site-nav-dropdown,
.site-nav-has-dropdown:focus-within .site-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 9px;
  transition: background 140ms ease, color 140ms ease;
  line-height: 1.3;
}

.site-nav-dropdown-item:hover {
  background: rgba(0, 102, 127, 0.09);
  color: var(--accent-strong);
}

.site-nav-dropdown-tag {
  display: block;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 1px;
}

.site-nav-dropdown-divider {
  height: 1px;
  background: rgba(16, 46, 76, 0.09);
  margin: 5px 8px;
}

/* ─────────────────────────────────────────────────
   STAT / IMPACT BAND
───────────────────────────────────────────────── */
.site-stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 32px;
  margin-bottom: 22px;
  border-radius: var(--radius-card);
  background: var(--panel-strong);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-card);
}

.site-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(16, 46, 76, 0.1);
}

.site-stat-cell:last-child {
  border-right: none;
}

.site-stat-value {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}

.site-stat-label {
  font-size: 0.81rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────────
   SERVICES OVERVIEW — specialty cards
───────────────────────────────────────────────── */
.site-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.site-specialty-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-specialty-conditions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-specialty-conditions li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 10px;
  background: rgba(0, 102, 127, 0.06);
  border-radius: 7px;
  border-left: 2px solid var(--accent);
}

.site-specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--accent-strong);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}

.site-specialty-link:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────
   SERVICE SUB-PAGE — condition cards
───────────────────────────────────────────────── */
.site-condition-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 102, 127, 0.1);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 6px;
}

/* ─────────────────────────────────────────────────
   PHOTO CARD VARIANTS — services pages
───────────────────────────────────────────────── */
.site-photo-card--services {
  background-image: url("/static/public_hero_clinical_v2.png");
  background-position: 40% 30%;
}

.site-photo-card--pulmonology {
  background-image: url("/static/public_hero_clinical_v2.png");
  background-position: 50% 38%;
}

.site-photo-card--oncology {
  background-image: url("/static/public_hero_clinical.png");
  background-position: 22% 20%;
}

.site-photo-card--ophthalmology {
  background-image: url("/static/public_hero_clinical.png");
  background-position: 26% 22%;
}

.site-photo-card--dermatology {
  background-image: url("/static/public_hero_clinical_v2.png");
  background-position: 60% 28%;
}

.site-photo-card--labs {
  background-image: url("/static/public_hero_clinical.png");
  background-position: 30% 18%;
}

@media (max-width: 960px) {
  .brand-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .workspace,
  .admin-layout,
  .reporting-page-layout,
  .reporting-header-grid,
  .reporting-content-grid,
  .portal-home-hero,
  .site-hero,
  .site-page-hero,
  .site-section-split,
  .site-band,
  .site-cta {
    grid-template-columns: 1fr;
  }

  .site-card-grid {
    grid-template-columns: 1fr;
  }

  .site-services-grid {
    grid-template-columns: 1fr;
  }

  .site-stat-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px;
  }

  .site-stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(16, 46, 76, 0.1);
    padding: 12px 8px;
  }

  .site-stat-cell:nth-child(even) {
    border-bottom: none;
  }

  .site-stat-cell:last-child {
    border-bottom: none;
  }

  .site-nav-dropdown {
    left: 0;
    transform: translateY(-6px);
  }

  .site-nav-has-dropdown:hover .site-nav-dropdown,
  .site-nav-has-dropdown:focus-within .site-nav-dropdown {
    transform: translateY(0);
  }

  .eyes-subtrack-grid,
  .eyes-portfolio-band {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .wide-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-model-controls {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .reporting-chart-grid,
  .reporting-filter-bar,
  .reporting-context-grid {
    grid-template-columns: 1fr;
  }

  .sql-workbench-grid {
    grid-template-columns: 1fr;
  }

  .sql-database-panel,
  .sql-table-panel {
    position: static;
    height: auto;
  }

}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 18px, 1240px);
    padding-top: 16px;
  }

  .site-shell {
    width: min(100% - 18px, 1240px);
    padding-top: 16px;
  }

  .brand-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .history-toolbar {
    width: 100%;
    justify-content: stretch;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .clinical-feedback-followup {
    grid-template-columns: 1fr;
  }

  .clinical-feedback-actions .primary-button,
  .clinical-feedback-actions .ghost-button {
    width: 100%;
    justify-content: center;
  }

  .organ-switch-link {
    width: 100%;
    justify-content: center;
  }

  .site-nav,
  .site-header-actions,
  .site-action-row {
    width: 100%;
  }

  .site-nav-link,
  .site-header-actions .ghost-button,
  .site-header-actions .primary-button,
  .site-action-row .ghost-button,
  .site-action-row .primary-button {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
  }

  .history-toolbar input,
  .history-toolbar select,
  .history-toolbar button {
    width: 100%;
  }

  .history-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-profile-card {
    padding: 18px;
  }

  .hero-profile-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reporting-launch-actions,
  .admin-nav,
  .reporting-dashboard-switcher {
    width: 100%;
  }

  .reporting-launch-actions .primary-button,
  .reporting-launch-actions .tag,
  .admin-nav-link,
  .reporting-dashboard-link {
    width: 100%;
    justify-content: center;
  }

  .reporting-filter-actions {
    justify-content: stretch;
  }

  .reporting-filter-actions .ghost-button {
    width: 100%;
  }

  .sql-action-row {
    flex-direction: column;
  }

  .sql-action-row .primary-button,
  .sql-action-row .ghost-button {
    width: 100%;
    justify-content: center;
  }

  .reporting-panel-actions {
    justify-content: flex-start;
  }

  .status-card,
  .control-card,
  .results-card,
  .model-card,
  .info-card,
  .admin-card {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-image-card {
    min-height: 260px;
  }

  .site-hero-copy h1,
  .site-page-hero h1 {
    font-size: clamp(1.68rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .preview-frame {
    min-height: 220px;
  }

  .organ-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organ-grid {
    grid-template-columns: 1fr;
  }

  .reporting-shell .reporting-kpi-card,
  .reporting-chart-point {
    min-height: unset;
  }

  .reporting-chart-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: unset;
  }

  th,
  td {
    padding: 10px 11px;
  }

  .history-grid-table,
  .history-grid-table thead,
  .history-grid-table tbody,
  .history-grid-table tr,
  .history-grid-table td {
    display: block;
    width: 100%;
  }

  .history-grid-table thead {
    display: none;
  }

  .history-grid-table tbody {
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .history-grid-table tr {
    border: 1px solid rgba(16, 46, 76, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
  }

  .history-grid-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(16, 46, 76, 0.08);
  }

  .history-grid-table td:last-child {
    border-bottom: none;
  }

  .history-grid-table td::before {
    content: attr(data-label);
    flex: 0 0 40%;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-strong);
  }

  .history-grid-table .history-action-cell {
    min-width: 0;
  }

  .history-grid-table .history-action-cell::before {
    content: "Action";
  }

  .history-grid-table .history-open-button {
    width: 100%;
  }
}

.guardrail-banner {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.08);
  background: rgba(244, 248, 251, 0.85);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.labs-status-quiet {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.labs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.lab-subcard {
  padding: 18px;
}

.labs-evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.labs-evidence-card {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.labs-overview-text {
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
}

.lab-state-chip,
.lab-state-tag {
  border: none;
}

.lab-state-low,
.lab-state-low-normal {
  background: rgba(154, 47, 23, 0.1);
  color: var(--warning);
}

.lab-state-high,
.lab-state-very-high {
  background: rgba(0, 102, 127, 0.12);
  color: var(--accent-strong);
}

.lab-state-normal {
  background: rgba(22, 97, 63, 0.11);
  color: var(--positive);
}

.lab-state-unknown {
  background: rgba(77, 99, 120, 0.12);
  color: var(--muted);
}

.labs-flow-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.labs-quick-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 252, 0.9));
}

.labs-quick-grid,
.labs-context-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.labs-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.labs-action-bar .primary-button {
  min-width: 220px;
}

.labs-optional-context {
  margin-top: 14px;
  padding: 14px 16px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.labs-optional-context summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.labs-optional-context summary::-webkit-details-marker {
  display: none;
}

.labs-optional-context[open] summary {
  margin-bottom: 14px;
}

.labs-flow-panel {
  display: grid;
  gap: 14px;
}

.profile-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.profile-catalog-field {
  flex: 1 1 240px;
}

.profile-catalog-select {
  width: 100%;
}

.labs-profile-chip-detected {
  background: rgba(0, 102, 127, 0.08);
  color: var(--accent-strong);
}

.labs-profile-chip-selected,
.labs-profile-chip-selected-static {
  background: rgba(22, 97, 63, 0.11);
  color: var(--positive);
}

.labs-profile-chip-selected {
  border: 1px solid rgba(22, 97, 63, 0.24);
  cursor: pointer;
  gap: 8px;
}

.labs-profile-grid {
  display: grid;
  gap: 16px;
}

.labs-profile-card {
  display: grid;
  gap: 12px;
}

.single-profile-review {
  gap: 10px;
}

.labs-profile-head,
.labs-finding-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.labs-profile-head h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 50rem;
}

.labs-finding-row {
  padding: 12px 0;
  border-top: 1px solid rgba(16, 46, 76, 0.08);
}

.labs-finding-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.labs-finding-row p {
  margin: 8px 0 0;
}

.labs-summary-shell {
  display: grid;
  gap: 14px;
}

.labs-summary-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 46, 76, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 251, 0.92));
}

.single-profile-review .labs-summary-card {
  padding: 22px;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
}

.labs-summary-text {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.72;
}

.labs-summary-section {
  display: grid;
  gap: 8px;
}

.labs-summary-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.labs-summary-list li {
  margin: 0 0 6px;
}

.labs-inline-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.labs-detail-toggle {
  border-top: 1px solid rgba(16, 46, 76, 0.08);
  padding-top: 12px;
}

.labs-detail-toggle summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.labs-detail-toggle[open] summary {
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .reporting-filter-card {
    position: static;
    top: auto;
  }

  .organ-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .labs-grid,
  .labs-evidence-grid {
    grid-template-columns: 1fr;
  }

  .labs-quick-grid,
  .labs-context-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .reporting-filter-head {
    flex-direction: column;
    align-items: start;
  }

  .labs-profile-head,
  .labs-finding-head,
  .profile-toolbar,
  .labs-action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-preview {
    padding: 24px 18px;
  }

  .eyes-subtrack-card,
  .eyes-portfolio-band {
    padding: 18px;
  }

  .eyes-subtrack-card h3,
  .eyes-portfolio-band h2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 720px) {
  .reporting-drawer {
    width: 100vw;
    padding: 20px 18px 24px;
  }
}
