:root {
  --blue: #0c29ab;
  --blue-soft: #eef2ff;
  --ink: #14151f;
  --muted: #62687a;
  --line: #dfe5f4;
  --paper: #ffffff;
  --danger: #b42318;
  --shadow: 0 24px 80px rgba(12, 41, 171, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff url("../images/background.png") center / cover fixed no-repeat;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.stats-page .shell {
  width: min(1640px, calc(100% - 24px));
}

.topbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 22px;
}

.header-actions {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-img {
  width: 216px;
  height: auto;
  object-fit: contain;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.hero,
.panel {
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-grid,
.two-columns {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 48px;
  align-items: start;
}

.hero {
  padding: 12px 60px 80px;
}

.panel {
  padding: 40px 60px 80px;
}

.mascot-card,
.side-illustration {
  min-height: 300px;
  display: grid;
  place-items: start center;
  align-content: start;
  gap: 18px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
}

.lumi-home-img {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-top: 32px;
}

.lumi-upload-img {
  width: 240px;
  max-width: 100%;
  height: auto;
}

.lumi-ipad-img,
.lumi-error-img {
  width: 240px;
  max-width: 100%;
  height: auto;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  text-align: center;
}

h2 {
  margin: 0 0 12px;
}

.hero-copy h1 {
  margin-bottom: 28px;
}

.subtitle {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.text-body {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.35;
}

.cta-title {
  margin: 24px 0 14px;
  font-size: 24px;
  font-weight: 700;
}

.lead {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.lead.small {
  font-size: 16px;
}

.requirements {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.requirements article,
.state-card,
.document-card,
.form-card,
.info-card {
  border: 1px solid rgba(223, 229, 244, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.requirements strong,
.requirements span {
  display: block;
}

.requirements span {
  color: var(--muted);
  margin-top: 6px;
}

.cta-row,
.document-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.login-button,
.stats-logout {
  border-radius: 12px;
}

.stats-logout {
  gap: 8px;
}

.stats-logout svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.login-button {
  gap: 10px;
}

.login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.login-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button.ghost {
  color: var(--blue);
  background: var(--blue-soft);
}

.button.danger {
  color: #fff;
  background: var(--danger);
}

.button.success {
  color: #fff;
  background: #238f4f;
  border-radius: 12px;
}

.icon-button {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 12px;
}

.icon-button svg,
.icon-button-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.icon-button-img-open-pdf {
  width: 34px;
  height: 34px;
}

.stats-create-document svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: #fff;
}

.icon-button svg {
  fill: currentColor;
}

.button.full {
  width: 100%;
}

.identity-form .button.primary {
  justify-self: center;
  margin-top: 18px;
}

.button [data-document-kind] {
  margin: 0 0.25em;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
}

.form-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  background: transparent;
  border: 0;
  padding: 0;
}

.password-field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 8px;
}

.password-field input {
  border-radius: 12px;
}

.password-toggle {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--blue);
  background: var(--blue-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.licence-message-content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.licence-message-content .lead,
.licence-message-content .info-card {
  margin: 0;
}

.dropzone {
  display: grid;
  gap: 8px;
  border: 2px dashed #bac5e8;
  border-radius: 12px;
  padding: 24px;
  background: #f9fbff;
  cursor: pointer;
  transition: 0.2s ease;
}

.dropzone:hover,
.dropzone.dragover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.dropzone.filled {
  border-color: #218849;
  background: #edfdf4;
}

.dropzone input {
  display: none;
}

.drop-title {
  font-weight: 800;
}

.drop-help,
.drop-filename {
  color: var(--muted);
}

.dropzone.has-file .drop-title,
.dropzone.has-file .drop-help {
  display: none;
}

.dropzone.has-file .drop-filename {
  color: #218849;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-error {
  color: var(--danger);
  font-weight: 700;
}

.state-card {
  margin-top: 24px;
}

.state-card.danger {
  border-color: rgba(180, 35, 24, 0.35);
}

.existing-licence-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  background: #f8fbff;
}

.existing-licence-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.existing-licence-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 5px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin-bottom: 18px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

.grid-form label,
.inline-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.identity-form .grid-form {
  margin-bottom: 4px;
}

.full-field {
  grid-column: 1 / -1;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}

.status-lines {
  display: grid;
  gap: 6px;
}

.status-lines span[hidden] {
  display: none;
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: var(--muted);
}

.result-panel,
.error-panel {
  max-width: 920px;
  margin: 0 auto;
}

.stats-panel {
  width: 100%;
  padding-left: 28px;
  padding-right: 28px;
}

.stats-header-band {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  margin: -40px -60px 32px;
  padding: 0 60px;
  background: url("../images/background.png") center top / cover no-repeat;
  font-size: 24px;
  font-weight: 700;
}

.stats-logo {
  height: 80px;
  width: auto;
}

.document-card {
  flex: 1 1 240px;
  display: grid;
  gap: 12px;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
  margin: 24px 0;
}

.stats-document-form {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.stats-intro-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.stats-intro-row .lead {
  flex: 1 1 auto;
  margin: 0;
}

.stats-create-document {
  gap: 8px;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px 0 10px;
  white-space: nowrap;
}

.stats-create-document span {
  font-size: 15px;
  line-height: 1;
}

.stats-document-form label,
.stats-document-row label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.stats-document-form input,
.stats-document-form select,
.stats-document-row select {
  width: 100%;
}

.document-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.document-picker {
  position: relative;
  min-width: min(520px, 100%);
  font-weight: 600;
}

.document-picker-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.document-picker-current {
  overflow: hidden;
}

.document-picker-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.document-picker-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-picker-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  justify-self: end;
  padding-right: 6px;
  text-align: right;
  white-space: nowrap;
}

.document-picker-chevron {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.document-picker.is-open .document-picker-chevron {
  transform: rotate(180deg);
}

.document-picker.is-disabled .document-picker-toggle {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.75;
}

.document-picker-panel {
  position: absolute;
  z-index: 12;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  transform-origin: top;
  animation: picker-open 0.16s ease both;
}

.document-picker-panel[hidden] {
  display: none;
}

.document-picker-filters {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto 42px;
  align-items: center;
  gap: 8px;
}

.document-picker-date-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}

.document-picker-date-filter {
  position: relative;
  display: block;
  flex: 0 0 auto;
}

.document-picker-date-select {
  appearance: none;
  background-image: none;
  width: auto;
  min-width: 58px;
  min-height: 42px;
  padding-left: 8px;
  padding-right: 32px;
  border-radius: 10px;
}

.document-picker-filter-clear {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.document-picker-filter-clear:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.document-picker-clear-all {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--danger);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.document-picker-clear-all:disabled {
  color: #8b91a3;
  background: #e5e8f0;
  cursor: not-allowed;
  opacity: 0.75;
}

.document-picker-search {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
}

.document-picker-list {
  display: grid;
  gap: 6px;
  max-height: 260px;
  overflow-x: auto;
  overflow-y: auto;
}

.document-picker-option {
  min-height: 42px;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}

.document-picker-option .document-picker-date {
  font-size: 12px;
}

.document-picker-option:hover {
  background: var(--blue-soft);
}

.document-picker-option.is-active {
  color: var(--blue);
  background: #eaf1ff;
}

.document-picker-empty {
  padding: 10px;
  color: var(--muted);
  font-weight: 700;
}

@keyframes picker-open {
  from {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.stats-document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(5, 42px);
  align-items: end;
  gap: 10px;
}

.rename-document-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.rename-document-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  text-align: left;
}

.stats-open-document {
  white-space: nowrap;
}

.stats-delete-form {
  margin: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.stats-submit {
  display: none;
}

.stats-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.stat-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 12px;
  min-width: 0;
  height: 136px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(12, 41, 171, 0.08);
}

.stat-card-content {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.stat-card-text {
  min-width: 0;
  text-align: left;
}

.stat-card p {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: #52607f;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  min-height: 32px;
  max-height: 32px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.stat-card-blue strong {
  color: #2168db;
}

.stat-card-blue .stat-icon {
  color: #2168db;
  background: #eaf1ff;
}

.stat-card-green strong {
  color: #238f4f;
}

.stat-card-green .stat-icon {
  color: #238f4f;
  background: #e8f8ef;
}

.stat-card-teal strong {
  color: #0f7f7a;
}

.stat-card-teal .stat-icon {
  color: #0f7f7a;
  background: #e2f7f5;
}

.stat-card-orange strong {
  color: #c86b00;
}

.stat-card-orange .stat-icon {
  color: #c86b00;
  background: #fff3d8;
}

.stat-card-purple strong {
  color: #7947d8;
}

.stat-card-purple .stat-icon {
  color: #7947d8;
  background: #f0e7ff;
}

.stat-card-media {
  justify-content: stretch;
}

.stat-card-media p {
  color: var(--ink);
  margin-bottom: 2px;
}

.media-content {
  width: 100%;
  min-width: 0;
  column-gap: 22px;
  text-align: left;
}

.media-donut {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: conic-gradient(#9b1c31 0deg, #f2a6b3 0deg 360deg);
  position: relative;
}

.media-donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--paper);
}

.media-breakdown {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: #52607f;
  font-size: 12px;
  list-style: none;
}

.media-breakdown li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.media-breakdown strong {
  display: inline;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.media-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.media-dot-mobile {
  background: #9b1c31;
}

.media-dot-pc {
  background: #f2a6b3;
}

#stats-table {
  border-radius: 16px;
  overflow: hidden;
}

.tabulator .premium-locked-header {
  color: #7b8192;
  background: #f1f3f8;
}

.tabulator .premium-locked-cell {
  color: #8a91a3;
  background: rgba(241, 243, 248, 0.72);
  font-weight: 800;
}

.premium-locked-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  cursor: help;
}

.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input.premium-locked-filter,
.tabulator .premium-locked-filter {
  width: 100%;
  min-height: 24px;
  box-sizing: border-box;
  padding: 3px 6px;
  color: #8a91a3;
  background: #eef0f5 !important;
  border: 1px solid #d7dbe7 !important;
  border-radius: 12px !important;
  font: inherit;
  cursor: not-allowed;
  opacity: 0.8;
  appearance: none;
  -webkit-appearance: none;
}

#surcharge-table {
  border-radius: 16px;
  overflow: hidden;
}

.table-actions {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 10px;
}

.table-clear-filters {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.tabulator .tabulator-header-filter {
  position: relative;
}

.tabulator .tabulator-header-filter input,
.tabulator .tabulator-header-filter select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding-right: 56px;
  border-radius: 12px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tabulator .tabulator-header-filter.has-filter-value::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 3px;
  bottom: 7px;
  z-index: 1;
  width: 44px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 45%);
  pointer-events: none;
}

.header-filter-clear {
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #52607f;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.header-filter-clear:hover {
  color: var(--danger);
  background: rgba(180, 35, 24, 0.08);
}

.header-filter-clear.is-disabled,
.header-filter-clear.is-disabled:hover {
  color: #a3a9b8;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.75;
}

.delete-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(3px);
}

.delete-modal[hidden] {
  display: none;
}

.delete-modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid rgba(223, 229, 244, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.delete-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue-soft);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.delete-modal-close:hover {
  color: #fff;
  background: var(--blue);
}

.delete-modal-image {
  width: 170px;
  max-width: 55%;
  height: auto;
  margin-bottom: 12px;
}

.delete-modal-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.surcharge-total {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.surcharge-total strong {
  color: var(--blue);
}

@media (max-width: 860px) {

  .topbar,
  .nav,
  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    position: static;
  }

  .hero-grid,
  .two-columns,
  .grid-form,
  .inline-form,
  .document-picker-date-filters,
  .stats-document-row,
  .stats-summary-grid {
    grid-template-columns: 1fr;
  }

  .document-picker-filters {
    grid-template-columns: 1fr;
  }

  .document-picker-date-filters {
    justify-content: flex-start;
  }

  .hero,
  .panel {
    padding: 24px;
  }

  .stats-intro-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mascot-card,
  .side-illustration {
    min-height: auto;
  }

  .lumi-home-img,
  .lumi-upload-img,
  .lumi-ipad-img,
  .lumi-error-img {
    width: 200px;
    margin-top: 0;
  }

  .stats-header-band {
    margin: -24px -24px 24px;
    padding: 0 24px;
    font-size: 18px;
  }
}
