:root {
  color-scheme: light;
  --color-primary: #df2f53;
  --color-secondary: #131313;
  --color-accent: #2fdfba;
  --color-bg: #f7f8fc;
  --color-surface: #ffffff;
  --color-text: #333333;
  --color-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow: 0 12px 30px rgba(19, 19, 19, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

body,
html {
  min-height: 100%;
}

.app-body {
  min-height: 100vh;
  background: var(--color-bg);
}

.app-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.app-shell--sidebar-collapsed {
  grid-template-columns: 1fr;
}

.app-shell--sidebar-collapsed .app-sidebar {
  display: none;
}

.app-sidebar {
  background: var(--color-secondary);
  color: #fff;
  padding: 1.5rem 1rem;
}

.app-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.95);
}

.app-header__eyebrow,
.app-card__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.app-header__title h1,
.app-card h2,
.app-card h3 {
  margin: 0;
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-muted);
  background: #f8fafc;
  padding: .5rem .75rem;
  border-radius: 999px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.app-brand__logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

.app-brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.app-brand__title {
  margin: 0;
  font-weight: 700;
}

.app-brand__subtitle {
  margin: .1rem 0 0;
  color: #94a3b8;
  font-size: .8rem;
}

.app-nav {
  display: grid;
  gap: .4rem;
}

.app-nav-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem .9rem;
  border-radius: 12px;
  color: #e2e8f0;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.app-nav-link:hover,
.app-nav-link--active {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.app-nav-link svg {
  width: 24px;
  max-width: 26px;
  height: 24px;
  max-height: 26px;
  flex-shrink: 0;
}

.app-nav-link--disabled {
  opacity: .45;
  cursor: default;
  pointer-events: none;
}

.app-nav-link--disabled:hover {
  background: transparent;
  color: #e2e8f0;
}

.app-content {
  flex: 1;
  min-width: 0;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.app-content>* {
  min-width: 0;
}

.app-card {
  background: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.app-card--soft {
  background: #fbfdff;
}

.app-card--centered {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.app-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-card__header--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.app-card__text {
  margin: 0;
  color: var(--color-muted);
}

.app-grid {
  display: grid;
  gap: 1rem;
}

.app-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .95rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.app-button--primary {
  background: var(--color-primary);
  color: #fff;
}

.app-button--ghost {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--color-text);
}

.app-button--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.app-button--sm {
  padding: .35rem .7rem;
  font-size: .8rem;
}

.app-button--md {
  padding: .55rem 1.05rem;
  font-size: .95rem;
}

.app-button--lg {
  padding: .7rem 1.35rem;
  font-size: 1rem;
}

.app-button__icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.app-button--danger {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.app-button--danger:hover {
  background: var(--color-primary);
  color: #fff;
}

.app-form .app-button {
  max-height: 40px;
}

.app-alert {
  border-radius: 12px;
  padding: .8rem .9rem;
  font-weight: 600;
  font-size: .9rem;
}

.app-alert--error {
  background: rgba(223, 47, 83, .1);
  color: var(--color-primary);
}

.app-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: .5rem 0;
  color: var(--color-muted);
  font-size: .8rem;
}

.app-divider::before,
.app-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.app-login-alt {
  margin-top: .5rem;
  font-size: .85rem;
}

.app-login-alt__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.app-login-alt__link:hover {
  text-decoration: underline;
}

.app-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.app-table th {
  text-align: left;
  color: var(--color-muted);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem .8rem;
  border-bottom: 1px solid var(--border-color);
}

.app-table td {
  padding: .8rem;
  border-bottom: 1px solid var(--border-color);
}

.app-table__empty {
  text-align: center;
  padding: 2rem;
}

.app-code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: .82rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: .15rem .4rem;
}

.app-finding__data {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: .3rem;
  font-size: .75rem;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
}

.app-finding__data th,
.app-finding__data td {
  border: none;
  padding: .3rem .6rem;
  vertical-align: top;
}

.app-finding__data-title {
  width: 65%;
  min-width: 50%;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.app-finding__data-title .app-finding__dot {
  display: inline-block;
  margin-top: 0;
  margin-right: .5rem;
}

.app-finding__data-title-text {
  vertical-align: middle;
}

.app-finding__data-value {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.app-finding__data-plugins {
  text-align: left;
}

.app-text--muted {
  color: var(--color-muted);
}

.app-findings {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}

.app-finding {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--color-secondary);
}

.app-finding__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: .3rem;
}

.app-finding__body {
  flex: 1 1 0;
  min-width: 0;
}

.app-finding--pass .app-finding__dot {
  background: #2fdfba;
}

.app-finding--warning .app-finding__dot {
  background: #f59e0b;
}

.app-finding--fail .app-finding__dot {
  background: var(--color-primary);
}

.app-finding__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: .1rem;
  padding: .35rem .5rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}

.app-finding__toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.app-finding__actions {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: .1rem;
}

.app-finding__actions .app-finding__toggle {
  margin-left: 0;
  margin-top: 0;
}

.app-finding__hide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .5rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}

.app-finding__hide:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

.app-finding__hide[data-hidden="1"] {
  border-color: #f59e0b;
  background: #fffbeb;
  color: #b45309;
}

.app-finding--hidden .app-finding__body {
  opacity: .45;
}

.app-plugins {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem .75rem;
  margin-top: .35rem;
}

.app-plugin {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  min-width: 0;
  padding: .3rem .55rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--color-surface);
  font-size: .8rem;
}

.app-plugin__name {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
  font-weight: 600;
}

.app-plugin__version {
  color: var(--color-muted);
  font-size: .75rem;
}

.app-table-wrap {
  overflow-x: auto;
  margin-top: .5rem;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.app-table th {
  text-align: left;
  padding: .45rem .6rem;
  color: var(--color-muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.app-table td {
  padding: .55rem .6rem;
  vertical-align: top;
  color: var(--color-secondary);
}

.app-table tbody tr:hover {
  background: rgba(226, 232, 240, 0.25);
}

.app-table__url {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  width: 100%;
}

.app-table__ellipsis {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-table__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: .35rem;
}

.app-table__dot--ok {
  background: #2fdfba;
}

.app-table__dot--bad {
  background: var(--color-primary);
}

.app-table__status {
  white-space: nowrap;
  font-weight: 600;
}

.app-table__status--ok {
  color: #0f766e;
}

.app-table__status--bad {
  color: var(--color-primary);
}

.app-table__num {
  white-space: nowrap;
  color: var(--color-muted);
}

.app-table__type {
  white-space: nowrap;
  color: var(--color-muted);
}

.app-table__seo {
  white-space: nowrap;
}

.app-seo {
  display: inline-block;
  vertical-align: middle;
  width: 64px;
  height: 8px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.6);
  overflow: hidden;
}

.app-seo__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.app-seo__fill--good {
  background: #2fdfba;
}

.app-seo__fill--mid {
  background: #f59e0b;
}

.app-seo__fill--low {
  background: var(--color-primary);
}

.app-seo__label {
  margin-left: .45rem;
  font-size: .8rem;
  font-weight: 600;
}

.app-seo__label--good {
  color: #0f766e;
}

.app-seo__label--mid {
  color: #b45309;
}

.app-seo__label--low {
  color: var(--color-primary);
}

.app-seo-row {
  display: flex;
  align-items: center;
}

.app-url-value {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  font-size: .8rem;
}

.app-url-value--good {
  color: #0f766e;
}

.app-url-value--missing,
.app-url-value--yes {
  color: #b45309;
}

.app-url-value--bad {
  color: var(--color-primary);
}

.app-url-value--no,
.app-url-value--empty {
  color: var(--color-text-muted);
}

.app-score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.app-score__ring-wrap {
  position: relative;
  width: 62px;
  height: 62px;
}

.app-score__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.app-score__track {
  fill: none;
  stroke: rgba(226, 232, 240, 0.7);
  stroke-width: 5;
}

.app-score__bar {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
}

.app-score__bar--good {
  stroke: #2fdfba;
}

.app-score__bar--mid {
  stroke: #f59e0b;
}

.app-score__bar--low {
  stroke: var(--color-primary);
}

.app-score__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-text);
}

.app-score__label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--color-muted);
}

.app-module-summary {
  margin: .5rem 0 0;
  font-size: 0.9rem;
  color: var(--color-secondary);
}

.app-module-description {
  margin: .35rem 0 0;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--color-secondary);
}

.app-module-desc__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: .45rem;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: transparent;
  color: var(--color-muted);
  font-size: .8rem;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}

.app-module-desc__toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.app-module-desc__panel {
  margin-top: .6rem;
  padding: .75rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.app-module-desc__textarea {
  display: block;
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: .55rem .75rem;
  font: inherit;
  color: var(--color-text);
  resize: vertical;
}

.app-module-desc__actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .6rem;
}

.app-offer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-offer-grid {
  align-items: start;
}

.app-offer-grid__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.app-kpi {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: border-color .15s ease;
}

.app-kpi:hover {
  border-color: var(--color-primary);
}

.app-kpi strong {
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--color-text);
}

.app-kpi span {
  font-size: .8rem;
  color: var(--color-muted);
}

.app-home-status {
  margin-top: 1rem;
  font-size: .9rem;
}

.app-offer-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .9rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.app-offer-stat strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.app-offer-stat span {
  font-size: .8rem;
  color: var(--color-muted);
}

.app-offer-stat--fail strong { color: var(--color-primary); }
.app-offer-stat--warning strong { color: #f59e0b; }
.app-offer-stat--pass strong { color: #0f766e; }

.app-offer-hint {
  font-style: italic;
  font-size: .85rem;
}

.app-offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.app-offer-item {
  display: flex;
  gap: .6rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-color);
}

.app-offer-item:last-child {
  border-bottom: 0;
}

.app-offer-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: .45rem;
  flex: 0 0 auto;
}

.app-offer-item__dot--fail { background: var(--color-primary); }
.app-offer-item__dot--warning { background: #f59e0b; }

.app-offer-item__module {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.app-offer-item__message {
  margin: .1rem 0 0;
  font-weight: 600;
  color: var(--color-text);
}

.app-offer-item__detail {
  margin: .15rem 0 0;
  font-size: .85rem;
  color: var(--color-secondary);
}

.app-table__title {
  max-width: 220px;
  color: var(--color-text);
}

.app-table__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
  white-space: nowrap;
}

.app-table__meta,
.app-table__redirect {
  max-width: 220px;
}

.app-finding__toggle-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.app-finding__hide-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.app-annotation__panel {
  flex: 1 0 100%;
  margin-top: .25rem;
  padding: .75rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.app-annotation__note {
  display: block;
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: .55rem .75rem;
  font: inherit;
  color: var(--color-text);
  resize: vertical;
}

.app-annotation__hint {
  margin: .45rem 0 .55rem;
  font-size: .8rem;
  font-style: italic;
  color: var(--color-muted);
}

.app-annotation__images {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .6rem;
}

.app-annotation__image {
  position: relative;
  margin: 0;
}

.app-annotation__image img {
  display: block;
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.app-annotation__image button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
}

.app-annotation__upload {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.app-annotation__upload input {
  max-width: 180px;
}

.app-form.app-form--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .8rem;
}

.app-form.app-form--row .app-form__field {
  flex: 1;
  min-width: 170px;
}

.app-form.app-form--row-nowrap {
  flex-wrap: nowrap;
}

.app-form.app-form--row-nowrap .app-form__field {
  flex: 0 0 auto;
  min-width: 0;
}

.app-form--right {
  justify-content: flex-end;
}

.app-form__field select {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: .55rem .75rem;
  font: inherit;
  background: #fff;
}

.app-form__hint {
  min-height: 1.2rem;
  margin: .4rem 0 0;
  font-size: .85rem;
  color: var(--color-muted);
}

.app-form__hint.app-form__hint--ok {
  color: var(--color-accent);
}

.app-form__hint.app-form__hint--error {
  color: var(--color-primary);
}

.app-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease;
}

.app-card--link:hover {
  border-color: var(--color-primary);
}

.app-card__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.app-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 19, 19, .45);
  display: grid;
  justify-items: end;
  z-index: 40;
}

.app-drawer-backdrop[hidden] {
  display: none;
}

.app-drawer {
  width: 60%;
  max-width: 760px;
  height: 100%;
  min-height: 100vh;
  background: var(--color-surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: app-drawer-in .25s ease;
}

@keyframes app-drawer-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.app-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.app-drawer__header h2 {
  margin: 0;
}

.app-drawer__body {
  flex: 1;
  padding: 1.5rem;
}

.app-drawer__footer {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.app-badge--pending {
  background: rgba(100, 116, 139, .14);
  color: var(--color-muted);
}

.app-badge--processing {
  background: rgba(223, 47, 83, .12);
  color: var(--color-primary);
}

.app-badge--completed {
  background: rgba(47, 223, 186, .14);
  color: #0f766e;
}

.app-badge--failed {
  background: rgba(223, 47, 83, .16);
  color: var(--color-primary);
}

.app-badge--done {
  background: rgba(47, 223, 186, .14);
  color: #0f766e;
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.app-header__greeting {
  margin: 0;
  font-size: .95rem;
  color: var(--color-muted);
}

.app-header__greeting strong {
  color: var(--color-secondary);
}

.app-header__user {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.app-header__user-name {
  font-weight: 600;
  font-size: .9rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(47, 223, 186, .12);
  color: var(--color-accent);
  font-weight: 600;
}

.app-form {
  display: grid;
  gap: .9rem;
}

.app-form__field {
  display: grid;
  gap: .35rem;
  color: var(--color-muted);
  font-weight: 600;
}

.app-form__field input {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: .55rem .75rem;
  font: inherit;
}

.app-icon-button {
  border: 0;
  background: #f8fafc;
  color: var(--color-secondary);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.app-icon-button svg {
  width: 20px;
  height: 20px;
}

.app-auth {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.app-auth__wrap {
  width: 100%;
  max-width: 440px;
  display: grid;
  gap: 1.25rem;
}

.app-auth__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--color-secondary);
}

.app-auth__logo {
  max-width: 220px;
  height: auto;
}

.app-auth__brand .app-brand__subtitle {
  color: var(--color-muted);
}

.app-auth__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--color-muted);
  text-decoration: none;
  font-size: .9rem;
}

.app-auth__back:hover {
  color: var(--color-primary);
}

.app-auth__back svg {
  width: 14px;
  height: 14px;
}

.app-footer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-muted);
  font-size: .9rem;
}

@media (max-width: 960px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-shell--sidebar-open .app-sidebar {
    display: block;
  }

  .app-drawer {
    width: 100%;
    max-width: none;
  }

  .app-grid--2,
  .app-grid--3 {
    grid-template-columns: 1fr;
  }
}