:root {
  color-scheme: light;
  --page: #f3f5f7;
  --surface: #ffffff;
  --surface-muted: #f7f8fa;
  --editor: #fbfcfd;
  --text: #1f2933;
  --text-muted: #66737f;
  --border: #d8dee4;
  --border-strong: #b8c2cc;
  --primary: #2457d6;
  --primary-hover: #1846bd;
  --primary-text: #ffffff;
  --success: #18794e;
  --success-bg: #edf8f2;
  --warning: #9a6700;
  --warning-bg: #fff8db;
  --danger: #cf222e;
  --danger-bg: #fff1f2;
  --neutral-bg: #eef2f6;
  --focus: #4c8bf5;
  --shadow: 0 14px 34px rgb(31 41 51 / 9%);
  --editor-font: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0d1117;
  --surface: #161b22;
  --surface-muted: #1c222b;
  --editor: #0f141b;
  --text: #e6edf3;
  --text-muted: #9ba7b4;
  --border: #30363d;
  --border-strong: #47515c;
  --primary: #4f7cff;
  --primary-hover: #6b91ff;
  --primary-text: #ffffff;
  --success: #57c78a;
  --success-bg: #10271d;
  --warning: #e3b341;
  --warning-bg: #2c2411;
  --danger: #ff7b72;
  --danger-bg: #30191d;
  --neutral-bg: #202731;
  --focus: #72a7ff;
  --shadow: 0 18px 42px rgb(0 0 0 / 35%);
}

html[data-theme="classic"] {
  color-scheme: light;
  --page: #cfd3d6;
  --surface: #e3e5e6;
  --surface-muted: #d7dadc;
  --editor: #f7f4e9;
  --text: #24292d;
  --text-muted: #5d666d;
  --border: #aeb4b8;
  --border-strong: #899197;
  --primary: #315d74;
  --primary-hover: #234a5e;
  --primary-text: #ffffff;
  --success: #236b45;
  --success-bg: #e4f1e8;
  --warning: #805d12;
  --warning-bg: #f5ebc8;
  --danger: #a6323a;
  --danger-bg: #f4dfe0;
  --neutral-bg: #d8dcde;
  --focus: #386f8b;
  --shadow: 0 12px 30px rgb(35 42 46 / 18%);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="system"] {
    color-scheme: dark;
    --page: #0d1117;
    --surface: #161b22;
    --surface-muted: #1c222b;
    --editor: #0f141b;
    --text: #e6edf3;
    --text-muted: #9ba7b4;
    --border: #30363d;
    --border-strong: #47515c;
    --primary: #4f7cff;
    --primary-hover: #6b91ff;
    --primary-text: #ffffff;
    --success: #57c78a;
    --success-bg: #10271d;
    --warning: #e3b341;
    --warning-bg: #2c2411;
    --danger: #ff7b72;
    --danger-bg: #30191d;
    --neutral-bg: #202731;
    --focus: #72a7ff;
    --shadow: 0 18px 42px rgb(0 0 0 / 35%);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--primary) 8%, transparent), transparent 28rem),
    var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
select,
textarea {
  font: inherit;
}

button,
select {
  color: inherit;
}

button:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 65%, transparent);
  outline-offset: 2px;
}

.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 1.65rem max(1rem, calc((100vw - 1600px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 10%, rgb(255 255 255 / 18%), transparent 24rem),
    linear-gradient(125deg, #1746a2, #2463d4 55%, #1376c5);
  box-shadow: 0 8px 28px rgb(20 56 120 / 24%);
}

.panel-kicker {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: 1rem;
}

.subtitle {
  max-width: 48rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.header-link {
  min-height: 2.3rem;
  padding: 0.5rem 0.8rem;
  color: #ffffff;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 760;
}

.header-link:hover {
  background: rgb(255 255 255 / 20%);
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.5rem 0.8rem;
  color: #eafff3;
  background: rgb(6 87 54 / 42%);
  border: 1px solid rgb(197 255 222 / 44%);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.privacy-badge::before {
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.45rem;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.theme-control {
  display: grid;
  gap: 0.2rem;
  color: rgb(255 255 255 / 82%);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-header select {
  color: #1f2933;
  background: #ffffff;
}

select {
  min-height: 2.3rem;
  padding: 0.35rem 2rem 0.35rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.45rem;
}

main {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.document-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0 0.2rem;
}

.tab-list {
  display: flex;
  min-width: 0;
  gap: 0.35rem;
  overflow-x: auto;
}

.tab-item {
  display: flex;
  min-width: 8.5rem;
  overflow: hidden;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.55rem 0.55rem 0 0;
}

.tab-item.is-active {
  background: var(--surface);
  border-color: var(--border-strong);
  box-shadow: 0 -2px 0 var(--primary) inset;
}

.document-tab {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0.6rem 0.7rem;
  overflow: hidden;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab-item.is-active .document-tab {
  color: var(--text);
}

.close-tab {
  width: 2rem;
  flex: 0 0 auto;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--border);
  cursor: pointer;
  font-size: 1rem;
}

.close-tab:hover:not(:disabled) {
  color: var(--danger);
  background: var(--danger-bg);
}

.close-tab:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.add-tab-button {
  flex: 0 0 auto;
  border-radius: 0.45rem;
}

.reset-tabs-button {
  flex: 0 0 auto;
  color: var(--danger);
}

.reset-tabs-button:hover:not(:disabled) {
  color: var(--danger);
  background: var(--danger-bg);
  border-color: color-mix(in srgb, var(--danger) 45%, var(--border));
}

.tab-limit {
  flex: 0 0 auto;
  padding: 0.45rem 0.2rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 680px;
}

.editor-panel {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.8rem 0.9rem;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
}

.panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.button {
  min-height: 2.15rem;
  padding: 0.45rem 0.7rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 720;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

.button:hover:not(:disabled) {
  background: var(--surface-muted);
  border-color: var(--border-strong);
}

.button:active:not(:disabled) {
  transform: translateY(1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button-primary {
  width: 100%;
  min-height: 3.1rem;
  color: var(--primary-text);
  background: var(--primary);
  border-color: var(--primary);
}

.button-primary:hover:not(:disabled) {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.button-icon {
  padding-inline: 0.58rem;
}

.file-context {
  padding: 0.45rem 0.9rem;
  overflow: hidden;
  color: var(--text-muted);
  background: var(--neutral-bg);
  border-bottom: 1px solid var(--border);
  font-family: var(--editor-font);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-editor {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  resize: none;
  padding: 1rem;
  color: var(--text);
  caret-color: var(--primary);
  background: var(--editor);
  border: 0;
  border-radius: 0;
  font-family: var(--editor-font);
  font-size: 0.9rem;
  line-height: 1.58;
  tab-size: 2;
  white-space: pre;
}

.editor-shell {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  background: var(--editor);
}

.editor-shell .code-editor {
  flex: 1 1 auto;
}

.line-numbers {
  min-width: 3.2rem;
  padding: 1rem 0.65rem;
  overflow: hidden;
  color: var(--text-muted);
  background: var(--surface-muted);
  border-right: 1px solid var(--border);
  font-family: var(--editor-font);
  font-size: 0.9rem;
  line-height: 1.58;
  text-align: right;
  user-select: none;
  white-space: pre;
}

.code-editor:focus {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.code-editor:disabled {
  color: var(--text-muted);
  cursor: default;
  opacity: 1;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.85rem;
  color: var(--text-muted);
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
}

.transform-toolbar {
  position: sticky;
  z-index: 10;
  top: 1rem;
  display: flex;
  width: 9.5rem;
  flex-direction: column;
  align-self: start;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

.wide-arrow {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.15rem;
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
  padding: 0.35rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.55rem;
}

.mode-switch legend {
  width: 100%;
  padding: 0.15rem 0.25rem 0.35rem;
  color: var(--text-muted);
  font-size: 0.69rem;
  font-weight: 750;
  text-align: center;
}

.mode-switch label {
  cursor: pointer;
}

.mode-switch:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.mode-switch:disabled label {
  cursor: not-allowed;
}

.mode-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mode-switch span {
  display: block;
  padding: 0.48rem 0.35rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 720;
  text-align: center;
  transition:
    color 120ms ease,
    background 120ms ease,
    border-color 120ms ease;
}

.mode-switch label:hover span {
  color: var(--text);
  background: var(--neutral-bg);
  border-color: var(--border-strong);
}

.mode-switch input:checked + span {
  color: var(--primary-text);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 7px color-mix(in srgb, var(--primary) 25%, transparent);
}

.mode-switch input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--focus) 65%, transparent);
}

.status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.status-main {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}

.status-main p {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.77rem;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  margin-top: 0.3rem;
  background: var(--text-muted);
  border-radius: 50%;
}

.status-neutral {
  background: var(--neutral-bg);
}

.status-success {
  background: var(--success-bg);
}

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

.status-warning {
  background: var(--warning-bg);
}

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

.status-error {
  background: var(--danger-bg);
}

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

.status-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.status-badge {
  padding: 0.25rem 0.48rem;
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  white-space: nowrap;
}

.details-card {
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
}

.details-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 780;
  list-style: none;
}

.details-card summary::-webkit-details-marker {
  display: none;
}

.details-card summary::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "+";
}

.details-card[open] summary::before {
  content: "-";
}

.summary-count {
  min-width: 1.55rem;
  padding: 0.15rem 0.4rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
}

.repair-details summary {
  color: var(--warning);
}

.error-details summary {
  color: var(--danger);
}

.change-list {
  display: grid;
  max-height: 13rem;
  gap: 0.5rem;
  margin: 0;
  padding: 0 0.9rem 0.8rem 2.4rem;
  overflow: auto;
}

.change-list li {
  padding-left: 0.15rem;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.45;
}

.change-location,
.change-kind {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.35rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  font-size: 0.65rem;
  font-weight: 720;
}

.change-kind.generated {
  color: var(--warning);
}

.ad-slot {
  display: grid;
  min-height: 92px;
  place-content: center;
  gap: 0.2rem;
  margin-top: 1rem;
  color: var(--text-muted);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      color-mix(in srgb, var(--border) 28%, transparent) 8px,
      color-mix(in srgb, var(--border) 28%, transparent) 9px
    ),
    var(--surface-muted);
  border: 1px dashed var(--border-strong);
  border-radius: 0.7rem;
  text-align: center;
}

.ad-slot span {
  font-size: 0.8rem;
  font-weight: 750;
}

.ad-slot small {
  font-size: 0.68rem;
}

.about-formatter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}

.about-formatter h2 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.3;
}

.about-formatter p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.about-intro {
  align-self: center;
}

.about-intro h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

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

.about-grid article {
  padding: 1rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
}

.editor-panel.is-fullscreen {
  position: fixed;
  z-index: 100;
  inset: 0.75rem;
  min-height: 0;
  border-color: var(--border-strong);
  box-shadow: 0 24px 80px rgb(0 0 0 / 42%);
}

body.has-fullscreen {
  overflow: hidden;
}

.folder-dialog,
.info-dialog {
  width: min(680px, calc(100% - 2rem));
  max-height: min(720px, calc(100vh - 2rem));
  padding: 0;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.folder-dialog::backdrop,
.info-dialog::backdrop {
  background: rgb(0 0 0 / 50%);
  backdrop-filter: blur(2px);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 1rem;
}

.highlight-grid article {
  padding: 1rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
}

.highlight-grid strong {
  color: var(--primary);
  font-size: 0.92rem;
}

.highlight-grid p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.dialog-shell {
  display: flex;
  max-height: inherit;
  flex-direction: column;
}

.dialog-shell header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
}

.dialog-description {
  margin: 0;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.folder-file-list {
  display: grid;
  gap: 0.35rem;
  padding: 0 1rem 1rem;
  overflow: auto;
}

.folder-file-button {
  width: 100%;
  padding: 0.7rem;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  max-width: min(28rem, calc(100% - 2rem));
  padding: 0.75rem 0.9rem;
  color: var(--primary-text);
  background: var(--text);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .about-formatter {
    grid-template-columns: 1fr;
  }

  .workspace {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editor-panel {
    min-height: 520px;
  }

  .transform-toolbar {
    position: static;
    z-index: auto;
    top: auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-self: auto;
    margin-top: 0;
  }

  .button-primary {
    width: auto;
    min-width: 12rem;
  }

  .wide-arrow {
    display: inline;
    margin: 0 0 0 0.35rem;
  }

  .mode-switch {
    grid-template-columns: 1fr 1fr;
    min-width: 13rem;
  }

  .mode-switch legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .header-actions {
    align-items: flex-end;
    justify-content: space-between;
  }

  .workspace {
    gap: 0.65rem;
  }

  .document-tabs {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .tab-list {
    width: 100%;
  }

  .tab-item {
    min-width: 7.5rem;
    flex: 1 1 7.5rem;
  }

  .reset-tabs-button {
    margin-left: auto;
  }

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

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


  .editor-panel {
    min-height: 460px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .transform-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .mode-switch {
    width: 100%;
  }

  .status-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-badges {
    justify-content: flex-start;
  }

  .panel-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (max-width: 460px) {
  .privacy-badge {
    display: none;
  }

  .button {
    flex: 1 1 auto;
  }

  .button-icon {
    flex-basis: 100%;
  }

  .code-editor {
    padding: 0.75rem;
    font-size: 0.82rem;
  }

  .line-numbers {
    min-width: 2.8rem;
    padding-block: 0.75rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
