:root {
  color-scheme: light;
  --navy-950: #071b3c;
  --navy-900: #0b234d;
  --navy-700: #25446f;
  --slate-600: #5b6c86;
  --slate-500: #71819a;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --blue-700: #0755b7;
  --blue-600: #0b63ce;
  --blue-500: #1976e9;
  --blue-100: #dcecff;
  --blue-50: #eff7ff;
  --green-700: #08795c;
  --green-600: #0a9470;
  --green-100: #d8f4eb;
  --amber-700: #9a5800;
  --amber-100: #fff0cc;
  --red-700: #b42318;
  --red-100: #fee4e2;
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(15, 35, 72, 0.06);
  --shadow-md: 0 12px 35px rgba(19, 45, 83, 0.1);
  --radius-sm: 0.55rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.2rem;
  --sidebar-width: 17.5rem;
  --topbar-height: 5.4rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy-950);
  background: var(--slate-50);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 20rem;
  background:
    radial-gradient(circle at 78% -10%, rgba(25, 118, 233, 0.09), transparent 32rem),
    var(--slate-50);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(25, 118, 233, 0.35);
  outline-offset: 2px;
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  color: var(--slate-600);
  font-weight: 650;
}

.brand-mark {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  color: var(--blue-600);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark svg path + path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark.small {
  width: 2.7rem;
  height: 2.7rem;
}

.login-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.login-card {
  width: min(100%, 31rem);
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem 1.15rem;
  border-bottom: 1px solid var(--slate-200);
}

.login-brand > div:last-child {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  color: var(--navy-900);
  font-size: 1.4rem;
}

.login-brand strong {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.login-copy {
  padding: 2rem 2rem 1rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.login-copy h1,
.page-header h1,
.dialog-header h2 {
  margin: 0;
  color: var(--navy-950);
  letter-spacing: -0.035em;
}

.login-copy h1 {
  font-size: clamp(2rem, 7vw, 2.55rem);
}

.login-copy p:last-child {
  margin: 0.55rem 0 0;
  color: var(--slate-600);
}

.stack-form {
  display: grid;
  gap: 1rem;
}

.login-card > .stack-form {
  padding: 0.75rem 2rem 1.5rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy-900);
  font-size: 0.93rem;
  font-weight: 700;
}

label small,
.field-help {
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-950);
  padding: 0.72rem 0.85rem;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

textarea {
  min-height: 6.2rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(25, 118, 233, 0.13);
  outline: none;
}

.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  color: var(--navy-900);
  background: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: transform 100ms ease, background 120ms ease, border-color 120ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button-primary {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 99, 206, 0.2);
}

.button-primary:hover {
  background: var(--blue-700);
}

.button-secondary {
  border-color: var(--slate-300);
  background: var(--white);
}

.button-danger {
  border-color: var(--red-100);
  background: #fff7f6;
  color: var(--red-700);
}

.button-quiet {
  min-height: 2.45rem;
  padding-inline: 0.75rem;
  background: transparent;
  color: var(--navy-700);
}

.button-wide {
  width: 100%;
}

.form-error {
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--red-100);
  color: var(--red-700);
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 650;
}

.login-trust {
  display: flex;
  gap: 0.75rem;
  margin: 0 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  padding: 0.9rem;
}

.login-trust div {
  display: grid;
  gap: 0.15rem;
}

.login-trust strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.login-trust small {
  color: var(--slate-600);
}

.trust-icon,
.shield {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.login-card footer {
  border-top: 1px solid var(--slate-200);
  padding: 1rem 2rem;
  color: var(--slate-500);
  text-align: center;
  font-size: 0.78rem;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-900);
  font-size: 1.28rem;
  text-decoration: none;
}

.topbar-brand strong {
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.topbar-account {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue-100);
  position: relative;
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--blue-600);
}

.avatar::before {
  top: 0.36rem;
  width: 0.54rem;
  height: 0.54rem;
}

.avatar::after {
  bottom: 0.3rem;
  width: 1rem;
  height: 0.58rem;
  border-radius: 0.65rem 0.65rem 0.4rem 0.4rem;
}

.account-name {
  max-width: 18rem;
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar {
  position: fixed;
  z-index: 30;
  inset: var(--topbar-height) auto 0 0;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.98);
  padding: 1.25rem 0.8rem;
  overflow-y: auto;
}

.sidebar nav {
  display: grid;
  gap: 0.25rem;
}

.nav-button {
  width: 100%;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 0;
  border-radius: 0.72rem;
  background: transparent;
  color: var(--navy-700);
  padding: 0.68rem 0.9rem;
  text-align: left;
  font-weight: 650;
}

.nav-button:hover {
  background: var(--slate-100);
}

.nav-button.active {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-icon {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

.nav-divider {
  height: 1px;
  margin: 0.65rem 0.5rem;
  background: var(--slate-200);
}

.sidebar-trust {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 0.75rem 0.3rem;
  color: var(--slate-600);
}

.sidebar-trust div {
  display: grid;
}

.sidebar-trust strong {
  color: var(--navy-700);
  font-size: 0.78rem;
}

.sidebar-trust small {
  font-size: 0.72rem;
}

.main-content {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  padding: calc(var(--topbar-height) + 2.4rem) clamp(1.2rem, 4vw, 4.5rem) 3rem;
}

.page-wrap {
  width: min(100%, 78rem);
  margin: 0 auto;
}

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

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.page-header p:not(.eyebrow) {
  margin: 0.5rem 0 0;
  color: var(--slate-600);
  font-size: 1.03rem;
}

.panel,
.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.panel {
  padding: clamp(1.1rem, 2.5vw, 1.7rem);
}

.upload-dropzone {
  min-height: 13.5rem;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 2px dashed #8fbdf1;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  padding: 2rem;
  text-align: center;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.upload-dropzone.dragover {
  border-color: var(--blue-600);
  background: var(--blue-100);
  transform: scale(1.005);
}

.upload-cloud {
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 0.65rem;
  color: var(--blue-600);
}

.upload-dropzone h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.upload-dropzone p {
  margin: 0.35rem 0 1.1rem;
  color: var(--slate-600);
}

.upload-form {
  display: grid;
  gap: 1.05rem;
}

.selected-files {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.selected-file {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0.65rem 0.8rem;
}

.selected-file strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file span {
  color: var(--slate-600);
  font-size: 0.83rem;
}

.remove-file {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 1.2rem;
}

.privacy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.privacy-chip {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  padding: 0.8rem;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 650;
}

.privacy-chip span:first-child {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--blue-600);
  padding: 0.3rem;
  font-weight: 750;
  text-decoration: none;
}

.table-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}

th,
td {
  padding: 0.82rem 1rem;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: middle;
}

th {
  background: var(--slate-50);
  color: var(--navy-700);
  font-size: 0.76rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

td {
  color: var(--navy-900);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

.cell-main {
  display: grid;
  gap: 0.1rem;
}

.cell-main strong {
  font-weight: 750;
}

.cell-main small,
.muted {
  color: var(--slate-600);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.34rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge-success {
  background: var(--green-100);
  color: var(--green-700);
}

.badge-neutral {
  background: var(--slate-100);
  color: var(--slate-600);
}

.badge-warning {
  background: var(--amber-100);
  color: var(--amber-700);
}

.badge-danger {
  background: var(--red-100);
  color: var(--red-700);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.button-small {
  min-height: 2.2rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 13rem;
  padding: 2rem;
  color: var(--slate-600);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.file-list {
  display: grid;
  gap: 0.8rem;
}

.file-batch {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.file-batch-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--slate-50);
}

.file-batch-header h3 {
  margin: 0;
  font-size: 1rem;
}

.file-batch-header p {
  margin: 0.2rem 0 0;
  color: var(--slate-600);
  font-size: 0.82rem;
}

.file-items {
  display: grid;
}

.file-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--slate-200);
}

.file-item-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.comment-box {
  margin: 0.8rem 1rem 1rem;
  border-left: 3px solid var(--blue-500);
  background: var(--blue-50);
  padding: 0.75rem 0.85rem;
  color: var(--navy-700);
  white-space: pre-wrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  padding: 1.15rem;
}

.stat-card span {
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 650;
}

.stat-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--navy-950);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.7fr);
  gap: 1.2rem;
}

.spaced-top {
  margin-top: 1rem;
}

.info-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--slate-200);
}

.info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-row dt {
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 650;
}

.info-row dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.notice {
  border: 1px solid #b9d9fb;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--navy-700);
  padding: 0.95rem 1rem;
}

.notice strong {
  color: var(--navy-900);
}

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

.privacy-card {
  min-height: 12rem;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
  padding: 1.35rem;
}

.privacy-card-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.35rem;
  font-weight: 900;
}

.privacy-card:nth-child(n + 3) .privacy-card-icon {
  background: var(--green-100);
  color: var(--green-700);
}

.privacy-card h2 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.15rem;
}

.privacy-card p {
  margin: 0;
  color: var(--slate-600);
}

.privacy-details {
  margin-top: 1rem;
}

.privacy-details h2 {
  margin-top: 0;
}

.privacy-details h3 {
  margin: 1.4rem 0 0.35rem;
  font-size: 1rem;
}

.privacy-details p,
.privacy-details li {
  color: var(--slate-600);
}

.privacy-details a {
  color: var(--blue-700);
  font-weight: 700;
}

.dialog {
  width: min(calc(100% - 2rem), 38rem);
  max-height: calc(100vh - 2rem);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 30px 90px rgba(7, 27, 60, 0.25);
  overflow: auto;
}

.dialog::backdrop {
  background: rgba(7, 27, 60, 0.55);
  backdrop-filter: blur(3px);
}

.dialog-small {
  width: min(calc(100% - 2rem), 31rem);
}

.dialog-header,
.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
}

.dialog-header {
  border-bottom: 1px solid var(--slate-200);
}

.dialog-header h2 {
  font-size: 1.45rem;
}

.dialog-body {
  padding: 1.35rem;
}

.dialog-actions {
  justify-content: flex-end;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
}

.icon-button {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy-700);
}

.icon-button:hover {
  background: var(--slate-100);
}

.dialog-close {
  font-size: 1.7rem;
  line-height: 1;
}

.dialog-lead {
  margin: 0;
  color: var(--slate-600);
}

.toast-region {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.65rem;
  width: min(calc(100% - 2rem), 25rem);
}

.toast {
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1rem;
  color: var(--navy-900);
  font-weight: 650;
  animation: toast-in 180ms ease-out;
}

.toast.error {
  border-left-color: var(--red-700);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-button {
  display: none;
  margin-right: 0.5rem;
}

.mobile-menu-button span {
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.sidebar-backdrop {
  position: fixed;
  z-index: 20;
  inset: var(--topbar-height) 0 0;
  background: rgba(7, 27, 60, 0.4);
}

@media (max-width: 68rem) {
  :root {
    --sidebar-width: 15.5rem;
  }

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

  .two-column {
    grid-template-columns: 1fr;
  }

  .privacy-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 50rem) {
  :root {
    --topbar-height: 4.6rem;
  }

  .topbar {
    padding: 0 0.8rem;
  }

  .topbar-brand {
    font-size: 1rem;
  }

  .topbar-brand strong {
    font-size: 1.15rem;
  }

  .brand-mark.small {
    width: 2.25rem;
    height: 2.25rem;
  }

  .account-name,
  .avatar {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .sidebar {
    transform: translateX(-105%);
    transition: transform 170ms ease;
    box-shadow: var(--shadow-md);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding: calc(var(--topbar-height) + 1.5rem) 1rem 2rem;
  }

  .page-header {
    display: grid;
  }

  .page-header .button {
    width: 100%;
  }

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

  .privacy-card {
    min-height: auto;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .file-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .file-item .muted {
    display: none;
  }
}

@media (max-width: 34rem) {
  .login-card {
    border-radius: 1rem;
  }

  .login-brand,
  .login-copy,
  .login-card > .stack-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .login-trust {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .topbar-brand > span:last-child {
    display: none;
  }

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

  .upload-dropzone {
    min-height: 12rem;
    padding: 1.2rem;
  }

  .selected-file {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .selected-file > span {
    display: none;
  }

  .file-batch-header {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
