:root {
  color-scheme: dark;
  --bg: #05030a;
  --bg-2: #0b0614;
  --panel: rgba(18, 12, 31, 0.88);
  --panel-strong: rgba(29, 18, 49, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --ink: #fff7ff;
  --muted: #a99bb8;
  --faint: #6e5d80;
  --line: rgba(217, 189, 255, 0.14);
  --line-strong: rgba(255, 92, 205, 0.28);
  --purple: #8b5cf6;
  --purple-deep: #4c1d95;
  --pink: #ff4ecb;
  --pink-hot: #ff2ea6;
  --orange: #ff8a3d;
  --orange-hot: #ff5a3d;
  --blue: #7dd3fc;
  --gold: #f7c66f;
  --green: #68f0a7;
  --red: #ff6b8a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --glow: 0 0 0 1px rgba(255, 78, 203, 0.08),
    0 20px 58px rgba(139, 92, 246, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 78, 203, 0.22), transparent 24%),
    linear-gradient(245deg, rgba(139, 92, 246, 0.26), transparent 30%),
    linear-gradient(180deg, #08040f 0%, #05030a 44%, #030208 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 22px;
}

.topbar {
  max-width: 1436px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(240px, auto) minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 78, 203, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 78, 203, 0.09), rgba(139, 92, 246, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(12, 7, 22, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 78, 203, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.topbar-actions,
.topbar-user {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: flex-end;
}

.topbar-actions {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
  min-width: 0;
  gap: 14px;
}

.topbar-user {
  flex: 0 0 auto;
  gap: 10px;
}

.topbar-user .ghost-button,
.topbar-user .system-strip {
  min-height: 46px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 8px;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 24px rgba(255, 78, 203, 0.32));
}

.brand > div {
  display: grid;
  align-content: end;
  gap: 6px;
}

.value-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: fit-content;
  max-width: 760px;
  margin-left: clamp(28px, 4vw, 72px);
  border: 1px solid rgba(255, 108, 163, 0.32);
  border-radius: 999px;
  padding: 0 28px 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 116, 158, 0.2) 0%, rgba(255, 78, 203, 0.26) 22%, rgba(255, 170, 84, 0.18) 52%, rgba(139, 92, 246, 0.24) 100%),
    rgba(16, 9, 28, 0.92);
  box-shadow:
    0 10px 28px rgba(255, 78, 203, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
}

.value-banner::before {
  content: "HOT";
  position: absolute;
  left: 14px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  background: linear-gradient(135deg, #ff9c54, #ff4ecb);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px rgba(255, 78, 203, 0.22);
}

.value-banner::after {
  content: "";
  position: absolute;
  left: 72px;
  right: 24px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 176, 92, 0.95), rgba(255, 78, 203, 0.9), rgba(139, 92, 246, 0.7), transparent);
}

.value-banner strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  min-width: 360px;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(255, 78, 203, 0.18);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-button.active {
  border-color: rgba(255, 78, 203, 0.38);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 78, 203, 0.16), rgba(139, 92, 246, 0.14)),
    rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  text-shadow: 0 0 38px rgba(255, 78, 203, 0.34);
}

h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.system-strip,
.run-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 11px;
  background: rgba(10, 6, 18, 0.72);
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.run-badge {
  color: var(--pink);
  border-color: rgba(255, 78, 203, 0.24);
  background: rgba(255, 78, 203, 0.08);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px currentColor;
}

.status-dot.ok {
  background: var(--green);
}

.status-dot.error {
  background: var(--red);
}

.workspace {
  max-width: 1436px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  grid-template-rows: auto minmax(340px, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 460px);
  gap: 18px;
  align-items: stretch;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 3, 10, 0.72);
  backdrop-filter: blur(18px);
}

.query-panel,
.process-panel,
.results-panel,
.detail-panel,
.auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(20px);
}

.query-panel::before,
.process-panel::before,
.results-panel::before,
.detail-panel::before,
.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 78, 203, 0.78), rgba(139, 92, 246, 0.7), transparent);
}

.query-panel,
.process-panel,
.detail-panel,
.auth-panel {
  padding: 18px;
}

.auth-copy,
.auth-card {
  position: relative;
  z-index: 1;
}

.auth-panel {
  width: min(920px, calc(100vw - 48px));
}

.auth-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 360px;
}

.auth-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.auth-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(217, 189, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(155deg, rgba(255, 138, 61, 0.12), transparent 34%),
    linear-gradient(30deg, rgba(255, 78, 203, 0.1), transparent 54%),
    rgba(17, 9, 31, 0.92);
}

.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-tabs {
  display: inline-flex;
  gap: 8px;
}

.auth-close {
  min-height: 38px;
}

.tab-button {
  min-height: 38px;
  min-width: 86px;
  border: 1px solid rgba(217, 189, 255, 0.16);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 900;
}

.tab-button.active {
  border-color: rgba(255, 78, 203, 0.38);
  background: rgba(255, 78, 203, 0.1);
  color: #fff;
}

.auth-note,
.field-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.auth-note {
  min-height: 48px;
  border: 1px solid rgba(217, 189, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.inline-actions {
  display: grid;
  gap: 10px;
}

.error-text {
  color: #ffc0cb;
}

.query-panel {
  grid-column: 2;
  min-height: 260px;
  background:
    linear-gradient(155deg, rgba(255, 138, 61, 0.18), transparent 34%),
    linear-gradient(30deg, rgba(255, 78, 203, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(17, 9, 31, 0.94);
}

.process-panel {
  position: sticky;
  top: 18px;
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: calc(100vh - 54px);
  padding-bottom: 34px;
  border-width: 2px;
  border-color: rgba(217, 189, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(255, 78, 203, 0.22),
    0 28px 88px rgba(0, 0, 0, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 80px rgba(139, 92, 246, 0.07);
}

.process-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 78, 203, 0.13);
  border-radius: 8px;
}

.results-panel {
  grid-column: 2;
  min-width: 0;
}

.detail-panel {
  grid-column: 2;
  display: grid;
  gap: 14px;
  width: 100%;
}

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

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dialog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 78, 203, 0.28);
  border-radius: 8px;
  padding: 5px 9px;
  color: #ffd2f4;
  background: rgba(255, 78, 203, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.results-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 78, 203, 0.08), rgba(139, 92, 246, 0.07));
}

.control-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffd6b8;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.search-hint::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.8);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(217, 189, 255, 0.18);
  border-radius: 8px;
  background: rgba(3, 2, 8, 0.66);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

input,
select {
  min-height: 48px;
  padding: 11px 13px;
}

textarea {
  min-height: 132px;
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.55;
  border-color: rgba(255, 138, 61, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 138, 61, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(3, 2, 8, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.22),
    0 0 42px rgba(255, 138, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

input::placeholder,
textarea::placeholder {
  color: rgba(169, 155, 184, 0.62);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 138, 61, 0.92);
  box-shadow:
    0 0 0 3px rgba(255, 138, 61, 0.18),
    0 0 34px rgba(255, 138, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-button,
.ghost-button {
  min-height: 46px;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 900;
}

.primary-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--orange-hot), var(--pink-hot) 42%, #7c3aed);
  color: #fff;
  box-shadow:
    0 14px 32px rgba(255, 90, 61, 0.2),
    0 12px 34px rgba(255, 46, 166, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.primary-button:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

#loginButton {
  min-width: 88px;
}

.ghost-button:disabled,
.tab-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.65), rgba(255, 78, 203, 0.32), rgba(139, 92, 246, 0.18));
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.18);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  min-height: 108px;
  padding: 16px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

.step::after {
  display: none;
}

.step:last-child::after {
  display: none;
}

.step.done {
  border-color: rgba(104, 240, 167, 0.2);
  background: linear-gradient(90deg, rgba(104, 240, 167, 0.075), rgba(255, 255, 255, 0.03));
}

.step.done::after {
  background: rgba(104, 240, 167, 0.48);
}

.step.running {
  border-color: rgba(255, 78, 203, 0.36);
  background: linear-gradient(90deg, rgba(255, 78, 203, 0.12), rgba(139, 92, 246, 0.08));
}

.step-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(217, 189, 255, 0.18);
  background: rgba(6, 3, 13, 0.88);
  color: var(--muted);
  font-weight: 950;
}

.step.done .step-index {
  border-color: rgba(104, 240, 167, 0.45);
  background: rgba(104, 240, 167, 0.12);
  color: var(--green);
  box-shadow: 0 0 24px rgba(104, 240, 167, 0.12);
}

.step.running .step-index {
  border-color: rgba(255, 78, 203, 0.62);
  background: rgba(255, 78, 203, 0.12);
  color: var(--pink);
  box-shadow: 0 0 26px rgba(255, 78, 203, 0.18);
}

.step.error .step-index,
.step.blocked .step-index {
  border-color: rgba(255, 107, 138, 0.52);
  background: rgba(255, 107, 138, 0.12);
  color: var(--red);
}

.step h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.metric-row span {
  min-height: 30px;
  border: 1px solid rgba(217, 189, 255, 0.14);
  border-radius: 8px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-row strong {
  color: #fff;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.08);
}

.empty-state strong {
  color: #fff;
  font-size: 18px;
}

.table-wrap {
  overflow: auto;
  max-height: calc(100vh - 214px);
  scrollbar-color: rgba(255, 78, 203, 0.55) rgba(255, 255, 255, 0.06);
}

table {
  width: 100%;
  min-width: 1060px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  border-bottom: 1px solid rgba(217, 189, 255, 0.1);
  padding: 12px 13px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(15, 9, 27, 0.98);
  color: var(--muted);
  font-weight: 950;
  box-shadow: inset 0 -1px 0 rgba(255, 78, 203, 0.18);
}

td {
  color: rgba(255, 247, 255, 0.9);
}

tr {
  background: rgba(12, 7, 22, 0.72);
}

tbody tr {
  cursor: pointer;
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

tbody tr:hover,
tbody tr.selected {
  background: linear-gradient(90deg, rgba(255, 78, 203, 0.13), rgba(139, 92, 246, 0.1));
  box-shadow: inset 2px 0 0 var(--pink);
}

.company-cell {
  min-width: 190px;
}

.company-cell strong,
.title-cell strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.subtext {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(255, 78, 203, 0.22);
  border-radius: 7px;
  padding: 3px 7px;
  background: rgba(255, 78, 203, 0.08);
  color: #ffd2f4;
  font-size: 12px;
  font-weight: 850;
}

.precise-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(217, 189, 255, 0.14);
  border-radius: 7px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.precise-badge.yes {
  border-color: rgba(104, 240, 167, 0.42);
  background: rgba(104, 240, 167, 0.12);
  color: var(--green);
  box-shadow: 0 0 22px rgba(104, 240, 167, 0.1);
}

.precise-badge.review {
  border-color: rgba(247, 198, 111, 0.36);
  background: rgba(247, 198, 111, 0.12);
  color: var(--gold);
}

.detail-empty {
  min-height: 170px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(217, 189, 255, 0.22);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
}

.detail-metric {
  min-height: 76px;
  border: 1px solid rgba(217, 189, 255, 0.12);
  border-radius: 8px;
  padding: 11px;
  background:
    linear-gradient(145deg, rgba(255, 78, 203, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.detail-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.detail-metric strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 17px;
}

.detail-copy {
  display: grid;
  gap: 10px;
}

.detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-copy a {
  color: #ffd2f4;
  font-weight: 900;
  text-decoration-color: rgba(255, 78, 203, 0.45);
}

.hidden {
  display: none !important;
}

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

  .topbar-actions {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }

  .workspace {
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  }

  .process-panel {
    min-height: auto;
  }

  .auth-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    padding: 12px;
  }

  .topbar,
  .section-head,
  .results-head {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    display: flex;
    padding: 12px;
  }

  .value-banner {
    justify-content: flex-start;
    width: 100%;
  }

  .value-banner strong {
    white-space: normal;
    text-align: left;
  }

  .topbar-user {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .workspace,
  .auth-panel,
  .split,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .process-panel,
  .query-panel,
  .results-panel,
  .detail-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .process-panel {
    position: static;
  }

  .table-wrap {
    max-height: none;
  }

  h1 {
    font-size: 34px;
  }
}
