:root {
  --bg: #f4f6f5;
  --surface: #ffffff;
  --surface-soft: #f8fbfa;
  --text: #14242c;
  --muted: #63747b;
  --line: #d6dfde;
  --line-strong: #bdcbca;
  --brand: #0d5268;
  --brand-dark: #0b2634;
  --brand-soft: #eaf0ef;
  --navy: #0b2634;
  --cyan: #0c7480;
  --gold: #d6a23e;
  --warning-bg: #fffaf0;
  --warning-line: #ead6a4;
  --warning-text: #6b4e16;
  --radius: 18px;
  --shadow: 0 16px 42px rgba(18, 41, 78, .09);
}

* { box-sizing: border-box; }
html { min-width: 320px; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button { cursor: pointer; }

.public-brand-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 96px;
  background: #0b2634;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.public-brand-inner {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.public-brand-home { display: inline-flex; min-width: 0; align-items: center; }
.public-brand-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}
.public-brand-return {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 9px;
  color: #fff;
  background: rgba(255,255,255,.07);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background .14s ease, border-color .14s ease, transform .1s ease;
}
.public-brand-return:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.48); }
.public-brand-return:active { transform: translateY(1px); }

.hero {
  position: relative;
  height: 238px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 82% 10%, #1c7c86 0, transparent 31%), linear-gradient(130deg, #082633 0%, #0c4d5e 66%, #0d6671 100%);
  border-bottom: 6px solid var(--gold);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 55%, #000);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: cover;
}
h1 { margin: 2px 0 0; font-size: 26px; font-weight: 730; letter-spacing: -.025em; }
h2 { margin: 0; font-size: 20px; font-weight: 720; letter-spacing: -.015em; }
.eyebrow { margin: 0; color: var(--gold); font-size: 9px; font-weight: 750; letter-spacing: .18em; }
.hero-badge { padding: 7px 12px; color: #dbeafe; border: 1px solid rgba(191,219,254,.3); border-radius: 99px; background: rgba(255,255,255,.08); font-size: 11px; }
.hero-glow { position: absolute; z-index: 1; border-radius: 50%; filter: blur(1px); }
.hero-glow-one { width: 340px; height: 340px; right: 6%; top: -230px; background: rgba(28, 124, 134, .24); }
.hero-glow-two { width: 260px; height: 260px; right: 28%; bottom: -235px; background: rgba(214, 162, 62, .12); }
.hero-actions { display: flex; align-items: center; gap: 8px; }
.hero-actions .secondary { color: #dbeafe; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.hero-actions .secondary:hover { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }

.wrap {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: -104px auto 72px;
}
.intro {
  min-height: 58px;
  margin-bottom: 17px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.intro h2 { margin-top: 4px; font-size: 23px; }
.intro p { max-width: 430px; margin: 0 0 3px; color: #c6dcf8; font-size: 12px; text-align: right; }
.section-kicker { color: var(--brand); font-size: 10px; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.intro .section-kicker { color: #72d4f4; }
.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.admin-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  min-height: 128px;
  padding: 21px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card::after { content: ""; position: absolute; width: 54px; height: 3px; left: 21px; top: 0; background: linear-gradient(90deg, var(--brand), var(--cyan)); border-radius: 0 0 4px 4px; }
.card.accent-blue { color: #fff; border-color: transparent; background: linear-gradient(145deg, #0b3342, #0d6170); box-shadow: 0 18px 38px rgba(11, 38, 52, .22); }
.card.accent-blue::after { display: none; }
.card.accent-blue span, .card.accent-blue small { color: #dbeafe; }
.card.accent-blue b { color: #fff; }
.card span { display: block; color: var(--muted); font-size: 12px; font-weight: 560; }
.card b {
  display: block;
  margin-top: 15px;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}
.card b.date-value { padding-top: 3px; font-size: 20px; }
.card small { display: block; margin-top: 12px; color: #8a94a6; font-size: 10px; }
.workspace { display: grid; }
.panel {
  margin-bottom: 18px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.workspace-panel { padding: clamp(26px, 4vw, 48px); border-radius: 24px; box-shadow: 0 28px 74px rgba(12, 40, 82, .16); }
.panel-head {
  min-height: 32px;
  margin-bottom: 23px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.panel-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.panel-head h2 { margin-top: 4px; }
.report-head { min-height: 86px; margin-bottom: 30px; padding-bottom: 27px; align-items: center; border-bottom: 1px solid var(--line); }
.report-title h2 { margin-top: 7px; color: var(--navy); font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -.035em; }
.report-title p { max-width: 620px; margin-top: 12px; color: #64748b; font-size: 14px; line-height: 1.65; }
.report-badges { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.report-badges span { padding: 8px 12px; border: 1px solid #cdd9dc; border-radius: 999px; color: var(--brand); background: #edf3f2; font-size: 11px; font-weight: 700; }
.data-boundary { margin: -8px 0 24px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; border-left: 5px solid var(--gold); background: #fff8e7; color: #5f5132; font-size: 12px; line-height: 1.7; }
.data-boundary b { flex: 0 0 auto; color: var(--navy); }
.data-boundary-copy { display: grid; gap: 3px; }
.data-boundary-copy em { color: #0d6b78; font-style: normal; font-weight: 700; }
.fixed-output { padding: 6px 10px; color: #47607e; background: #f4f7fb; border: 1px solid #e1e8f2; border-radius: 99px; font-size: 10px; }

.quick-update {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 21px 22px;
  border: 1px solid #cdd9dc;
  border-radius: 15px;
  background: linear-gradient(110deg, #f8fbfa, #edf3f2 55%, #f8fbfa);
}
.quick-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #19272c; background: var(--gold); border-radius: 0; box-shadow: 0 10px 24px rgba(11,38,52,.18); font-size: 26px; }
.quick-copy b { color: var(--navy); font-size: 15px; }
.quick-copy p { margin: 6px 0 0; color: #61728b; font-size: 11px; line-height: 1.55; }
.primary-large { min-height: 48px; padding: 11px 22px; border-radius: 12px; font-size: 14px; }
.divider { height: 41px; display: flex; align-items: center; gap: 12px; color: #98a2b3; font-size: 10px; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }

.config-block { padding: 24px; border: 1px solid #d6dfde; border-radius: 18px; background: linear-gradient(145deg, #fff, #f2f6f5); }
.config-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 21px; }
.config-heading > i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 0; color: #19272c; background: var(--gold); box-shadow: 0 9px 22px rgba(11,38,52,.16); font-size: 13px; font-style: normal; font-weight: 800; }
.config-heading h3 { margin: 0; color: var(--navy); font-size: 18px; }
.config-heading p { margin: 5px 0 0; color: #718096; font-size: 12px; line-height: 1.55; }

.form {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, .72fr) minmax(250px, 1.5fr);
  gap: 14px;
}
.form label { color: #3f4858; font-size: 12px; font-weight: 650; }
.report-form label > span { display: block; color: #314158; font-size: 12px; font-weight: 750; }
.form .wide { grid-column: auto; }
input,
.scope-select {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 10px 12px;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: 0;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
input:focus,
.scope-select:focus-visible {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 82, 104, .1);
}
.scope-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 14px;
}
.scope-select span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scope-select i { flex: 0 0 auto; color: var(--brand); font-size: 11px; font-style: normal; font-weight: 750; }

button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #344054;
  background: #f1f3f6;
  font-size: 13px;
  font-weight: 650;
  transition: background .14s ease, border-color .14s ease, color .14s ease, transform .1s ease, box-shadow .14s ease;
}
button:hover { background: #e9edf3; }
button:active { transform: translateY(1px); }
button:focus-visible { outline: 3px solid rgba(13, 82, 104, .18); outline-offset: 1px; }
button[disabled] { cursor: wait; opacity: .62; transform: none; }
.primary {
  color: #19272c;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 5px 13px rgba(181, 108, 34, .18);
}
.primary:hover { color: #19272c; background: #e2b75e; border-color: #e2b75e; }
.secondary { color: #344054; background: #fff; border-color: var(--line-strong); }
.secondary:hover { color: var(--brand-dark); background: var(--brand-soft); border-color: #b9c8ef; }
.report-link { color: var(--brand); background: #edf3f2; border-color: #b9cccf; }
.report-link:hover,
.report-link.report-ready { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: 0 5px 13px rgba(13, 82, 104, .18); }
.compact { min-height: 34px; padding: 6px 11px; font-size: 12px; }
.button-row { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.button-row .primary { min-width: 180px; }
.action-wide { min-width: 235px; }
.report-actions { margin-top: 20px; padding: 20px 22px; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid #d6dfde; border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(11, 38, 52, .06); }
.action-copy { display: grid; gap: 5px; }
.action-copy b { color: var(--navy); font-size: 15px; }
.action-copy span { color: #7a8798; font-size: 11px; line-height: 1.5; }
.action-buttons { display: flex; gap: 10px; }
.action-buttons button { min-height: 48px; border-radius: 12px; }

.compliance-box {
  margin-top: 18px;
  padding: 13px 15px;
  color: var(--warning-text);
  background: var(--warning-bg);
  border: 1px solid var(--warning-line);
  border-radius: 10px;
}
.compliance-box b { font-size: 12px; }
.compliance-box p { margin: 5px 0 0; color: #765b25; font-size: 11px; line-height: 1.65; }

.report-commerce { margin-top: 24px; padding: clamp(22px, 3vw, 30px); border: 1px solid #cdd9dc; border-top: 5px solid var(--gold); border-radius: 18px; background: linear-gradient(145deg, #f8fbfa, #edf3f2); }
.report-offer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.report-offer-head h3 { margin: 4px 0 0; color: var(--navy); font-size: 19px; }
.report-offer-head > b { color: var(--brand); font-size: 28px; }
.report-dimensions { margin: 10px 0 16px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.purchase-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: end; }
.purchase-grid label,
.unlock-grid label,
.pricing-form label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; }
.purchase-grid input,
.unlock-grid input,
.pricing-form input { min-height: 40px; padding: 8px 11px; border: 1px solid #bdc9d8; border-radius: 9px; background: #fff; color: var(--ink); font: inherit; }
.unlock-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; margin-top: 12px; padding-top: 12px; border-top: 1px solid #cfe1d9; }
.order-result { margin-top: 12px; padding: 10px 12px; color: #195e4b; background: #fff; border: 1px solid #bcd8cd; border-radius: 9px; font-size: 12px; }
.commerce-note { margin: 12px 0 0; color: #65756f; font-size: 10px; line-height: 1.65; }
.trial-status { margin: 14px 0; padding: 12px 14px; border: 1px solid #ead6a4; border-radius: 12px; background: #fff8e7; color: #6b4e16; font-size: 12px; }
.free-export-button { width: 100%; min-height: 48px; margin-top: 4px; }

.pricing-form { display: grid; grid-template-columns: 160px 160px 220px auto; gap: 10px; align-items: end; margin: 14px 0 8px; }
.order-admin-list { display: grid; gap: 10px; margin-top: 18px; }
.order-admin-item { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(220px, .8fr) auto; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfe; }
.order-status { display: inline-block; margin-left: 8px; padding: 2px 7px; border-radius: 999px; color: #7a4d00; background: #fff3d7; font-size: 10px; }
.order-status.paid { color: #087657; background: #e6f7f1; }
.order-status.cancelled { color: #667085; background: #eef0f3; }
.order-license { display: grid; gap: 2px; color: #345247; font-size: 11px; }
.order-license b { color: #0a7458; font-size: 15px; letter-spacing: .04em; }
.order-license small { color: var(--muted); }

.corner-actions {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 2px;
  padding: 3px 5px;
  border: 1px solid rgba(227, 231, 238, .9);
  border-radius: 7px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 3px 12px rgba(23, 32, 51, .06);
  backdrop-filter: blur(8px);
}
.corner-actions .text-button {
  min-height: 0;
  padding: 3px 6px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  box-shadow: none;
}
.corner-actions .text-button:hover { color: var(--brand-dark); background: transparent; text-decoration: underline; }

.grid { display: grid; gap: 18px; }
.admin-grid { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
.admin-detail { color: #3f4858; font-size: 13px; line-height: 1.6; }
.admin-dl { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 10px 12px; margin: 0; }
.admin-dl dt { color: var(--muted); }
.admin-dl dd { margin: 0; overflow-wrap: anywhere; }
#adminLogBox {
  min-height: 180px;
  max-height: 310px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  color: #dbe6ff;
  background: #111827;
  border: 1px solid #273246;
  border-radius: 10px;
  font: 12px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
}

.outputs { display: grid; gap: 12px; }
.output-folder { padding: 15px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; }
.output-folder h3 { margin: 0 0 4px; color: var(--text); font-size: 14px; }
.folder-head { margin-bottom: 8px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.file-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 90px 145px 130px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.file-row b { font-size: 12px; }
.file-actions { display: flex; justify-content: flex-end; gap: 6px; }
.file-actions button { min-height: 31px; padding: 5px 9px; font-size: 11px; }
.muted { color: var(--muted); overflow-wrap: anywhere; }

.scope-dialog {
  width: min(680px, calc(100vw - 32px));
  padding: 0;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 28px 80px rgba(23, 32, 51, .22);
}
.scope-dialog::backdrop { background: rgba(17, 24, 39, .42); backdrop-filter: blur(2px); }
.scope-dialog form { padding: 22px; }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.dialog-close { width: 34px; min-height: 34px; padding: 0; font-size: 20px; }
.dialog-tools,
.dialog-actions { display: flex; gap: 8px; margin-top: 16px; }
.dialog-actions { justify-content: flex-end; padding-top: 15px; border-top: 1px solid var(--line); }
.type-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-height: 400px;
  margin: 15px 0 18px;
  overflow: auto;
}
.type-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.type-option:has(input:checked) { background: var(--brand-soft); border-color: #9eb4ed; }
.type-option input { width: 16px; height: 16px; margin: 0; accent-color: var(--brand); }
.type-option span { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.type-option b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.type-option small { flex: 0 0 auto; color: var(--muted); font-size: 10px; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 48px;
  z-index: 80;
  max-width: min(400px, calc(100vw - 36px));
  padding: 10px 13px;
  color: #fff;
  background: rgba(17, 24, 39, .94);
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, .18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  font-size: 12px;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .report-head { align-items: flex-start; }
  .report-badges { max-width: 240px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards .card:last-child { grid-column: 1 / -1; }
  .admin-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-cards .card:last-child { grid-column: auto; }
  .form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form .wide { grid-column: 1 / -1; }
  .admin-grid { grid-template-columns: 1fr; }
  .quick-update { grid-template-columns: 48px minmax(0, 1fr); }
  .quick-update .primary-large { grid-column: 1 / -1; width: 100%; }
  .order-admin-item { grid-template-columns: 1fr; }
  .file-row { grid-template-columns: 1fr 80px; }
  .file-row > :nth-child(3) { display: none; }
  .file-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .public-brand-bar { height: 80px; }
  .public-brand-inner { width: min(100% - 28px, 1180px); gap: 12px; }
  .public-brand-logo { width: 205px; }
  .public-brand-return { min-height: 34px; padding: 6px 9px; font-size: 11px; white-space: nowrap; }
  .hero { height: 218px; }
  .hero-inner,
  .wrap { width: min(100% - 28px, 1180px); }
  .hero-inner { height: 92px; }
  .brand-mark { width: 39px; height: 39px; }
  h1 { font-size: 18px; }
  .hero-badge { display: none; }
  .hero-actions { gap: 5px; }
  .hero-actions button { padding: 5px 8px; font-size: 10px; }
  .wrap { margin-top: -108px; }
  .intro { min-height: 70px; margin-bottom: 14px; }
  .intro h2 { font-size: 18px; }
  .intro p { display: none; }
  .cards,
  .admin-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .cards .card:last-child { grid-column: 1 / -1; }
  .admin-cards .card:last-child { grid-column: auto; }
  .card { min-height: 105px; padding: 16px; }
  .card b { margin-top: 10px; font-size: 23px; }
  .panel,
  .workspace-panel { padding: 18px; }
  .report-head { min-height: 0; margin-bottom: 20px; padding-bottom: 20px; flex-direction: column; }
  .report-title h2 { font-size: 29px; }
  .report-title p { font-size: 12px; }
  .report-badges { max-width: none; justify-content: flex-start; }
  .report-badges span { padding: 6px 9px; font-size: 10px; }
  .data-boundary { margin-top: -4px; display: grid; gap: 3px; }
  .config-block { padding: 17px; }
  .config-heading { align-items: flex-start; }
  .fixed-output { display: none; }
  .quick-update { grid-template-columns: 42px minmax(0, 1fr); padding: 16px; gap: 12px; }
  .quick-icon { width: 42px; height: 42px; border-radius: 12px; }
  .form { grid-template-columns: 1fr; }
  .form .wide { grid-column: auto; }
  .button-row { flex-direction: column; }
  .button-row button { width: 100%; }
  .report-actions { align-items: stretch; padding: 17px; }
  .action-buttons { width: 100%; flex-direction: column; }
  .purchase-grid,
  .unlock-grid,
  .pricing-form { grid-template-columns: 1fr; }
  .report-offer-head { align-items: center; }
  .panel-head { align-items: flex-start; }
  .folder-head { flex-direction: column; }
  .file-row { grid-template-columns: 1fr; }
  .file-row > :nth-child(2) { display: none; }
  .type-options { grid-template-columns: 1fr; }
  .corner-actions { left: 50%; right: auto; bottom: 9px; }
}
