:root {
  --paper: #f5f4ef;
  --surface: #fbfbf8;
  --surface-strong: #ffffff;
  --ink: #19201c;
  --muted: #6f7772;
  --faint: #959c97;
  --line: #dedfd9;
  --line-strong: #c8cbc4;
  --accent: #176b45;
  --accent-hover: #105738;
  --accent-soft: #e5efe8;
  --danger: #a33b32;
  --danger-soft: #f8e9e6;
  --shadow: 0 18px 54px rgba(34, 42, 37, .10);
  --font-ui: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --radius: 10px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button { color: inherit; }
button:not(:disabled) { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .48; }

:focus-visible {
  outline: 3px solid rgba(23, 107, 69, .28);
  outline-offset: 2px;
}

::selection { background: #cce1d3; color: #102a1e; }

[hidden] { display: none !important; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 740;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  border-radius: 2px 8px 2px 2px;
}

.brand--hero { color: #fff; font-size: 18px; }
.brand--hero .brand-mark { background: #fff; color: var(--accent); }

.section-kicker,
.eyebrow {
  margin: 0 0 7px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

/* Login */
.login-view {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
  background: var(--surface);
}

.login-story {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: clamp(34px, 5vw, 72px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.login-story::before,
.login-story::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.login-story::before {
  right: -20%;
  bottom: 12%;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.login-story::after {
  right: -8%;
  bottom: 24%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.login-copy { position: relative; z-index: 1; max-width: 600px; }
.login-copy .eyebrow { color: #b9d6c6; }
.login-copy h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.7vw, 92px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.login-copy > p:last-child {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.75;
}
.login-footnote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #9ee1ba; box-shadow: 0 0 0 4px rgba(158,225,186,.12); }

.login-panel { display: grid; min-height: 100vh; place-items: center; padding: 48px; }
.login-form { width: min(100%, 390px); }
.login-form__heading { margin-bottom: 36px; }
.login-form__heading h2 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 38px; font-weight: 400; letter-spacing: -.035em; }
.login-form__heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.6; }

.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--surface-strong);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:hover { border-color: #aeb3ab; }
.field input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(23,107,69,.12); }

.form-error { margin: 0 0 14px; padding: 10px 12px; border-left: 3px solid var(--danger); background: var(--danger-soft); color: var(--danger); font-size: 12px; }

/* App structure */
.app-view {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 258px minmax(590px, 1fr) 286px;
  background: var(--paper);
}

.sidebar {
  display: flex;
  min-height: 100vh;
  max-height: 100vh;
  padding: 24px 18px 18px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.sidebar__header { display: flex; align-items: center; justify-content: space-between; padding: 0 5px 25px; }
.environment-badge { padding: 4px 6px; border: 1px solid var(--line); color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .09em; }
.primary-nav { padding-bottom: 24px; border-bottom: 1px solid var(--line); }

.nav-item {
  display: grid;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0 5px 5px 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.nav-item svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.nav-item--active { border-left-color: var(--accent); background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.count-badge { min-width: 21px; padding: 2px 5px; border-radius: 10px; background: rgba(23,107,69,.1); font-family: var(--font-mono); font-size: 10px; text-align: center; }

.mailbox-section { display: flex; min-height: 0; flex: 1; flex-direction: column; padding-top: 22px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; padding: 0 5px 10px; }
.section-heading h2 { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.icon-button {
  display: inline-grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: transparent;
}
.icon-button:hover:not(:disabled) { background: #eaeae5; }
.icon-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-button--bordered { border: 1px solid var(--line-strong); background: var(--surface-strong); }

.mailbox-list { min-height: 0; overflow-y: auto; scrollbar-width: thin; }
.mailbox-item {
  display: grid;
  width: 100%;
  padding: 11px 9px;
  grid-template-columns: 30px minmax(0,1fr);
  gap: 9px;
  align-items: center;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0 5px 5px 0;
  background: transparent;
  text-align: left;
}
.mailbox-item:hover { background: #efefea; }
.mailbox-item[aria-selected="true"] { border-left-color: var(--accent); background: var(--accent-soft); }
.mailbox-icon { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-family: Georgia, serif; font-size: 12px; }
.mailbox-item strong, .mailbox-item small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mailbox-item strong { font-size: 12px; font-weight: 650; }
.mailbox-item small { margin-top: 3px; color: var(--faint); font-family: var(--font-mono); font-size: 9px; }

.mini-state { padding: 28px 8px; color: var(--faint); font-size: 12px; line-height: 1.6; text-align: center; }
.mini-state button { margin-top: 10px; }

.sidebar__footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 2px 0; border-top: 1px solid var(--line); }
.account-chip { display: flex; min-width: 0; gap: 9px; align-items: center; }
.account-avatar { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 11px; }
.account-chip strong, .account-chip small { display: block; }
.account-chip strong { font-size: 11px; }
.account-chip small { margin-top: 2px; color: var(--faint); font-size: 9px; }

.main-content { display: flex; min-width: 0; max-height: 100vh; flex-direction: column; background: var(--surface-strong); }
.workspace-header { display: flex; min-height: 92px; padding: 20px 24px; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.workspace-header h1 { max-width: 440px; margin: 0; overflow: hidden; font-size: 19px; font-weight: 690; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 9px; }

.search-box { position: relative; display: block; }
.search-box svg { position: absolute; top: 50%; left: 11px; width: 17px; fill: none; stroke: var(--muted); stroke-width: 1.7; transform: translateY(-50%); }
.search-box input { width: 214px; height: 38px; padding: 0 12px 0 36px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--ink); font-size: 12px; }
.search-box input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(23,107,69,.1); }

.button {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 680;
  font-size: 12px;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.button:active:not(:disabled) { transform: translateY(1px); }
.button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button--primary { background: var(--accent); color: #fff; }
.button--primary:hover:not(:disabled) { background: var(--accent-hover); }
.button--secondary { border-color: var(--line-strong); background: var(--surface-strong); }
.button--secondary:hover:not(:disabled) { border-color: #aeb3ab; background: var(--surface); }
.button--ghost { background: transparent; color: var(--muted); }
.button--ghost:hover { background: #efefea; color: var(--ink); }
.button--wide { width: 100%; min-height: 46px; }

.mail-workspace { display: grid; min-height: 0; flex: 1; grid-template-columns: minmax(235px, 34%) minmax(330px, 66%); }
.inbox-pane { display: flex; min-width: 0; min-height: 0; flex-direction: column; border-right: 1px solid var(--line); background: var(--surface); }
.pane-heading { display: flex; min-height: 76px; padding: 17px 18px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.pane-heading h2 { margin: 0 0 4px; font-size: 14px; }
.pane-heading p { margin: 0; color: var(--faint); font-size: 10px; }
.sync-time { color: var(--faint); font-family: var(--font-mono); font-size: 9px; }

.state-panel { display: grid; min-height: 250px; flex: 1; place-content: center; place-items: center; padding: 30px; color: var(--faint); text-align: center; }
.state-panel strong { margin-bottom: 6px; color: var(--muted); font-size: 12px; }
.state-panel span { font-size: 11px; }
.state-illustration { display: grid; width: 60px; height: 60px; margin-bottom: 16px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.state-illustration svg { width: 28px; fill: none; stroke: var(--line-strong); stroke-width: 1.4; }
.state-panel--error .state-illustration { border-color: #ead1cd; background: var(--danger-soft); }
.state-panel--error strong { color: var(--danger); }

.skeleton-list { width: 100%; align-self: stretch; }
.skeleton-row { padding: 17px 16px; border-bottom: 1px solid var(--line); }
.skeleton-line { height: 8px; border-radius: 2px; background: linear-gradient(90deg, #e9e9e3, #f3f3ef, #e9e9e3); background-size: 200% 100%; animation: shimmer 1.3s linear infinite; }
.skeleton-line + .skeleton-line { width: 68%; margin-top: 10px; }

.message-list { min-height: 0; overflow-y: auto; }
.message-item { display: block; width: 100%; padding: 17px 16px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; }
.message-item:hover { background: #f1f1ec; }
.message-item[aria-selected="true"] { background: var(--accent-soft); box-shadow: inset 2px 0 var(--accent); }
.message-item__top { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 12px; }
.message-item strong, .message-item p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.message-item strong { font-size: 12px; }
.message-item time { flex: 0 0 auto; color: var(--faint); font-family: var(--font-mono); font-size: 9px; }
.message-item p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }

.reader-pane { min-width: 0; min-height: 0; overflow-y: auto; background: var(--surface-strong); }
.reader-empty { display: flex; min-height: 100%; padding: 32px; flex-direction: column; justify-content: space-between; }
.reader-empty > div { margin: auto 0; }
.reader-empty h2 { margin: 0 0 10px; font-family: Georgia, serif; font-size: clamp(26px, 3vw, 42px); font-weight: 400; letter-spacing: -.035em; }
.reader-empty p:last-child { color: var(--muted); }
.reader-index { color: var(--faint); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; }
.reader-content { padding: clamp(22px, 4vw, 48px); }
.reader-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: var(--muted); font-size: 10px; }
.text-button:hover { border-color: var(--accent); color: var(--accent); }
.reader-from { margin: 0 0 10px; color: var(--accent); font-size: 11px; font-weight: 700; }
.reader-header h2 { max-width: 690px; margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(28px, 3.2vw, 48px); font-weight: 400; letter-spacing: -.042em; line-height: 1.08; overflow-wrap: anywhere; }
.reader-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--faint); font-family: var(--font-mono); font-size: 9px; }
.reader-body { max-width: 760px; padding-top: 28px; color: #303632; font-size: 14px; line-height: 1.75; overflow-wrap: anywhere; }
.reader-body img { max-width: 100%; height: auto; }
.reader-body a { color: var(--accent); }
.reader-body pre { padding: 14px; overflow: auto; background: var(--paper); font-family: var(--font-mono); font-size: 12px; }
.reader-body table { max-width: 100%; border-collapse: collapse; }
.reader-body td, .reader-body th { padding: 6px; border: 1px solid var(--line); }
.reader-body--loading { color: var(--faint); }

.utility-rail { display: flex; min-height: 100vh; max-height: 100vh; overflow-y: auto; flex-direction: column; border-left: 1px solid var(--line); background: var(--surface); }
.utility-section { padding: 25px 22px; border-bottom: 1px solid var(--line); }
.utility-heading { display: flex; align-items: center; justify-content: space-between; }
.utility-section h2 { margin: 6px 0 18px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: -.025em; }
.connection-pill { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-size: 9px; font-weight: 700; }
.connection-pill > span { width: 6px; height: 6px; border-radius: 50%; background: #25a768; box-shadow: 0 0 0 3px #ddefe4; }
.connection-pill--offline { color: var(--danger); }
.connection-pill--offline > span { background: var(--danger); box-shadow: 0 0 0 3px var(--danger-soft); }
.metric-grid { display: grid; margin: 0 0 18px; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.metric-grid div { padding: 13px; }
.metric-grid div + div { border-left: 1px solid var(--line); }
.metric-grid dt { color: var(--faint); font-size: 9px; text-transform: uppercase; }
.metric-grid dd { margin: 6px 0 0; font-family: Georgia, serif; font-size: 26px; }
.status-row { display: flex; align-items: center; justify-content: space-between; color: var(--faint); font-size: 9px; }
.status-row strong { color: var(--muted); font-family: var(--font-mono); font-weight: 500; }
.utility-section--otp > p { margin: -6px 0 18px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.key-icon { width: 18px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; }
.otp-display { padding: 17px 14px; border: 1px solid var(--line); border-left: 3px solid var(--accent); background: var(--surface-strong); }
.otp-display > span { display: block; color: var(--ink); font-family: var(--font-mono); font-size: 18px; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.otp-display small { display: block; margin-top: 6px; color: var(--faint); font-size: 9px; }
.otp-display--waiting > span { color: var(--accent); animation: soft-blink 1.4s ease-in-out infinite; }
.otp-display--error { border-left-color: var(--danger); }
.otp-display--error > span { color: var(--danger); }
.otp-actions { display: grid; margin-top: 10px; grid-template-columns: 1fr 38px; gap: 8px; }
.otp-actions .button { min-height: 38px; }
.utility-note { display: flex; margin-top: auto; padding: 20px 22px; gap: 10px; color: var(--muted); }
.utility-note svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--accent); stroke-width: 1.6; }
.utility-note strong { color: var(--ink); font-size: 10px; }
.utility-note p { margin: 4px 0 0; font-size: 9px; line-height: 1.5; }

/* Dialog */
.generate-dialog { width: min(92vw, 440px); padding: 0; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface-strong); color: var(--ink); box-shadow: var(--shadow); }
.generate-dialog::backdrop { background: rgba(25,32,28,.45); }
.generate-dialog form { padding: 24px; }
.dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.dialog-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.generate-dialog fieldset { display: grid; margin: 0; padding: 0; gap: 8px; border: 0; }
.generate-dialog legend { margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.type-option { display: flex; padding: 12px; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 5px; }
.type-option:hover { border-color: var(--line-strong); background: var(--surface); }
.type-option input { width: 16px; height: 16px; accent-color: var(--accent); }
.type-option strong, .type-option small { display: block; }
.type-option strong { font-size: 11px; }
.type-option small { margin-top: 3px; color: var(--faint); font-family: var(--font-mono); font-size: 9px; }
.dialog-actions { display: flex; margin-top: 22px; justify-content: flex-end; gap: 8px; }

.toast-region { position: fixed; z-index: 120; right: 18px; bottom: 18px; display: grid; width: min(360px, calc(100vw - 36px)); gap: 8px; pointer-events: none; }
.toast { display: flex; padding: 12px 14px; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid var(--line-strong); border-left: 3px solid var(--accent); border-radius: 5px; background: var(--surface-strong); box-shadow: 0 12px 34px rgba(25,32,28,.16); color: var(--ink); font-size: 11px; animation: toast-in .18s ease-out; }
.toast--error { border-left-color: var(--danger); }
.toast button { padding: 0; border: 0; background: transparent; color: var(--faint); }

@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes soft-blink { 50% { opacity: .5; } }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1180px) {
  .app-view { grid-template-columns: 235px minmax(570px, 1fr); }
  .utility-rail { grid-column: 1 / -1; display: grid; min-height: 0; max-height: none; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); border-left: 0; }
  .utility-section { border-right: 1px solid var(--line); border-bottom: 0; }
  .utility-note { margin: 0; align-items: center; }
  .main-content, .sidebar { max-height: calc(100vh - 220px); min-height: 610px; }
}

@media (max-width: 820px) {
  body { overflow: auto; }
  .login-view { grid-template-columns: 1fr; }
  .login-story { min-height: 42vh; padding: 30px; }
  .login-copy { margin: 50px 0 30px; }
  .login-copy h1 { font-size: clamp(44px, 12vw, 68px); }
  .login-footnote { display: none; }
  .login-panel { min-height: 58vh; padding: 40px 24px; }

  .app-view { display: block; }
  .sidebar { display: block; min-height: auto; max-height: none; padding: 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .sidebar__header { padding: 0 0 14px; }
  .primary-nav { display: none; }
  .mailbox-section { padding: 12px 0 0; border-top: 1px solid var(--line); }
  .mailbox-list { display: flex; margin: 0 -16px; padding: 0 16px 5px; gap: 7px; overflow-x: auto; }
  .mailbox-item { width: 210px; flex: 0 0 auto; border: 1px solid var(--line); border-left-width: 1px; border-radius: 5px; }
  .mailbox-item[aria-selected="true"] { border-color: var(--accent); box-shadow: inset 0 -2px var(--accent); }
  .sidebar__footer { display: none; }

  .main-content { min-height: auto; max-height: none; }
  .workspace-header { min-height: auto; padding: 18px 16px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .header-actions { width: 100%; }
  .search-box { flex: 1; }
  .search-box input { width: 100%; }
  .mail-workspace { display: block; }
  .inbox-pane { min-height: 330px; max-height: 470px; border-right: 0; border-bottom: 1px solid var(--line); }
  .reader-pane { min-height: 460px; }
  .reader-empty { min-height: 460px; }
  .reader-toolbar { margin-bottom: 35px; }
  .utility-rail { display: block; min-height: auto; max-height: none; }
  .utility-section { border-right: 0; border-bottom: 1px solid var(--line); }
  .utility-note { padding-bottom: 28px; }
}

@media (max-width: 480px) {
  .login-story { min-height: 36vh; }
  .login-panel { min-height: 64vh; }
  .workspace-header h1 { max-width: calc(100vw - 32px); }
  .button--secondary span { display: none; }
  .mailbox-item { width: 185px; }
  .reader-content { padding: 24px 18px 38px; }
  .reader-header h2 { font-size: 31px; }
  .reader-meta { display: grid; }
}

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