:root {
  color-scheme: dark;
  --bg: #0d1017;
  --sidebar: #11151e;
  --panel: #151b26;
  --input: #10151f;
  --line: #2a3343;
  --text: #edf1f9;
  --muted: #a2aec2;
  --accent: #8ba4ff;
  --green: #7bdfb0;
  --red: #ff9fa6;
  --amber: #f4cf80;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: #c3cfff;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 750;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 1rem;
}
small {
  font-size: 0.875rem;
}
p + p {
  margin-top: 10px;
}
.muted,
.metadata {
  color: var(--muted);
}
.eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 16px;
  padding: 12px;
  background: var(--panel);
}
.skip-link:focus {
  top: 8px;
}
.app-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 22px;
  background: var(--sidebar);
  border-right: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-weight: 750;
  line-height: 1.3;
  white-space: nowrap;
}
.brand small {
  display: block;
  margin-top: 5px;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #101522;
  font-size: 1.4rem;
  font-weight: 850;
  flex: none;
}
.nav-label {
  margin: 48px 10px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.side-nav {
  display: grid;
  gap: 5px;
}
.side-nav a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.side-nav a span {
  display: inline-block;
  width: 20px;
  text-align: center;
  font-size: 1rem;
}
.side-nav a:hover {
  background: #1c2433;
  color: var(--text);
}
.side-nav [aria-current='page'] {
  background: #24314c;
  border-color: #34496e;
  color: #c9d5ff;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 28px;
}
.switch-area {
  display: block;
  padding: 12px 0 20px;
  font-size: 0.875rem;
}
.identity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.identity > div {
  min-width: 0;
}
.identity strong {
  display: block;
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.identity small {
  color: var(--muted);
  font-size: 0.75rem;
}
.identity-avatar {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  flex: none;
}
.workspace {
  width: 100%;
  max-width: 1540px;
  min-width: 0;
  margin: 0 auto;
  padding: 36px clamp(20px, 3.6vw, 56px) 20px;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.workspace-badge {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.page-intro {
  color: var(--muted);
  margin: -4px 0 26px;
  max-width: 760px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.stats-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  min-width: 0;
}
.stat > span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}
.stat > strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.stat small,
.stat a {
  font-size: 0.8rem;
  color: var(--muted);
}
.stat a {
  color: var(--accent);
}
.stat.featured {
  border-color: #455a7c;
  background: linear-gradient(115deg, #202e49, #172235);
}
.stat.featured > strong {
  color: #c4d1ff;
}
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 24px;
  min-width: 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.section-heading p {
  font-size: 0.875rem;
  margin-top: 5px;
}
.section-heading > div {
  min-width: 0;
}
.button,
button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #253148;
  color: var(--text);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}
button:hover,
.button:hover {
  border-color: #627491;
  background: #2b3953;
  color: var(--text);
}
.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #101728;
}
.primary:hover {
  background: #b1c1ff;
  border-color: #b1c1ff;
  color: #101728;
}
.secondary {
  background: transparent;
}
.small-button {
  padding: 7px 12px;
}
.danger-text {
  color: var(--red);
}
.text-button {
  border: 0;
  padding: 12px 0 0;
  color: var(--muted);
  background: none;
  font-size: 0.8rem;
  font-weight: 400;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.reset-link {
  font-size: 0.875rem;
  padding: 10px 0;
}
input,
textarea,
select {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--input);
  color: var(--text);
  font-size: 1rem;
}
input::placeholder,
textarea::placeholder {
  color: #8290a7;
}
textarea {
  resize: vertical;
}
label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 550;
}
.form-stack {
  display: grid;
  gap: 18px;
}
.form-stack button {
  justify-self: start;
}
.form-stack p {
  font-size: 0.875rem;
}
.filters {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.filters label {
  flex: 1;
  min-width: 140px;
}
.filters .search-label {
  flex: 2;
  min-width: 210px;
}
.filters input,
.filters select {
  font-size: 0.875rem;
  min-height: 44px;
}
.generation-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 155px 110px 16px;
  gap: 14px;
  align-items: center;
  color: var(--text);
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.generation-row:last-child {
  border-bottom: 0;
}
.generation-row:hover {
  color: var(--text);
  background: #1b2535;
  border-radius: 6px;
}
.object-icon {
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #a9baff;
  border: 1px solid #34435f;
  border-radius: 9px;
  background: #1e2a40;
}
.generation-text {
  min-width: 0;
}
.generation-text > strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 13px;
  font-size: 0.75rem;
  margin-top: 7px;
}
.model-meta {
  font-size: 0.8rem;
  color: #c8d1e2;
  overflow-wrap: anywhere;
}
.model-meta small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.75rem;
}
.row-arrow {
  color: var(--muted);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 6px;
  padding: 4px 9px;
  border: 1px solid #465064;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 550;
  color: #c9d1e0;
  white-space: nowrap;
}
.pill.succeeded,
.pill.active {
  color: var(--green);
  background: #183429;
  border-color: #315c48;
}
.pill.failed,
.pill.blocked {
  color: var(--red);
  background: #3a252f;
  border-color: #66404a;
}
.pill.processing,
.pill.queued,
.pill.draft,
.pill.awaiting_credits {
  color: var(--amber);
  background: #332e20;
  border-color: #62583a;
}
.pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 22px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.empty {
  padding: 42px 20px;
  text-align: center;
}
.empty h3 {
  margin: 9px 0;
}
.empty p {
  color: var(--muted);
  max-width: 470px;
  margin: 0 auto;
  font-size: 0.9rem;
}
.empty-icon {
  color: var(--accent);
  font-size: 2rem;
}
.help-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px dashed #3a4962;
  border-radius: 12px;
}
.help-strip p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 6px;
}
.help-strip .button {
  margin-left: auto;
  flex: none;
}
.help-symbol {
  font-size: 1.8rem;
  color: var(--accent);
}
.notice {
  padding: 16px 20px;
  border: 1px solid #3d5073;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: #1a263d;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.notice p {
  margin-top: 6px;
  color: #c7d2e4;
}
.notice.success {
  border-color: #3e7359;
  background: #19352a;
  color: var(--green);
}
.notice.error,
.form-error {
  border-color: #85515a;
  background: #39232b;
  color: #ffc1c6;
}
.form-error {
  border: 1px solid #85515a;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 14px;
  grid-column: 1/-1;
}
.form-error:empty {
  display: none;
}
.ledger-row,
.connection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.ledger-row > div,
.connection-row > div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.ledger-row p,
.connection-row p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.amount {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.amount.credit {
  color: var(--green);
}
.amount.debit {
  color: var(--red);
}
.amount small {
  font-weight: 400;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.steps li {
  display: flex;
  gap: 16px;
}
.steps li > span {
  color: var(--accent);
  font-size: 0.85rem;
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #3a4962;
  border-radius: 8px;
}
.steps p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}
.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.columns > .card {
  margin: 0;
}
.space-bottom {
  margin-bottom: 24px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}
.detail-grid dt {
  color: var(--muted);
  font-size: 0.8rem;
}
.detail-grid dd {
  margin: 5px 0 0;
  font-weight: 550;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}
.detail-grid .wide {
  grid-column: 1/-1;
}
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.request-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.code-view {
  max-width: 100%;
  overflow: auto;
  max-height: 560px;
  padding: 18px;
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e131d;
  font:
    0.85rem/1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  tab-size: 2;
}
.prompt-editor {
  font:
    0.85rem/1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  min-height: 340px;
}
details {
  min-width: 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 0;
}
details > p {
  font-size: 0.875rem;
  margin: 8px 0;
}
.result-text {
  width: 100%;
  height: 340px;
  font:
    0.85rem/1.6 ui-monospace,
    monospace;
  white-space: pre;
  overflow: auto;
}
.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
th {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
}
td,
th {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
}
td:first-child,
th:first-child {
  padding-left: 0;
}
td:last-child,
th:last-child {
  padding-right: 0;
}
td {
  overflow-wrap: anywhere;
}
td small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 4px;
}
td strong {
  font-weight: 600;
}
.table-actions {
  text-align: right;
}
.user-name {
  min-width: 130px;
  max-width: 250px;
}
.prompt-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
}
.version-list {
  display: grid;
  align-content: start;
  gap: 8px;
}
.version-link {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel);
}
.version-link[aria-current] {
  border-color: var(--accent);
  background: #202f48;
}
.version-link small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.version-link .pill {
  margin-top: 10px;
}
.audit-row {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.audit-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.audit-row p {
  font-size: 0.875rem;
  margin-top: 6px;
}
.audit-heading small {
  color: var(--muted);
}
.balance-preview {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.page-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}
dialog {
  width: min(480px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid #506487;
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 30px 100px #0008;
}
dialog::backdrop {
  background: #040813bc;
}
dialog p {
  color: var(--muted);
  margin: 18px 0 24px;
  white-space: pre-line;
}
dialog .actions {
  justify-content: flex-end;
}
.shell {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 40px;
}
.shell.compact {
  width: min(560px, calc(100% - 40px));
  padding-top: 12vh;
}
.compact .brand {
  margin-bottom: 42px;
}
.compact h1 {
  margin-bottom: 20px;
}
.compact .actions {
  margin-top: 24px;
}
.public-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero-content {
  padding: 70px 0 38px;
  max-width: 850px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.hero-content .lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
}
.hero-content .actions {
  margin-top: 28px;
}
.public-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 36px;
}
.public-steps article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--panel);
}
.public-steps .step-number {
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  font-size: 0.8rem;
}
.public-steps p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}
.code-display {
  font:
    700 2.4rem ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  margin: 22px 0;
  text-align: center;
  overflow-wrap: anywhere;
}
@media (min-width: 1600px) {
  .workspace {
    padding-top: 46px;
  }
}
@media (max-width: 1150px) {
  .app-layout {
    grid-template-columns: 204px minmax(0, 1fr);
  }
  .sidebar {
    padding: 26px 14px 20px;
  }
  .stats-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .generation-row {
    grid-template-columns: 34px minmax(0, 1fr) 105px;
    gap: 12px;
  }
  .model-meta {
    grid-column: 2;
    grid-row: auto;
  }
  .generation-row .pill {
    grid-column: 3;
    grid-row: 1;
  }
  .row-arrow {
    display: none;
  }
  .generation-row {
    padding: 16px 0;
  }
  .prompt-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}
@media (max-width: 820px) {
  .app-layout {
    display: block;
  }
  .sidebar {
    position: static;
    height: auto;
    padding: 18px 20px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: block;
  }
  .sidebar .brand small,
  .nav-label,
  .identity {
    display: none;
  }
  .brand-mark {
    width: 30px;
    height: 32px;
    font-size: 1.2rem;
  }
  .side-nav {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    margin-top: 18px;
    padding: 2px 2px 7px;
  }
  .side-nav a {
    white-space: nowrap;
    padding: 9px 12px;
  }
  .side-nav a span {
    display: none;
  }
  .sidebar-bottom {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }
  .switch-area {
    padding: 6px 0 0;
    font-size: 0.8rem;
  }
  .workspace {
    padding: 26px 20px 20px;
  }
  .workspace-badge {
    display: none;
  }
  .page-header {
    margin-bottom: 22px;
    padding-bottom: 20px;
  }
  .stats-grid {
    gap: 10px;
  }
  .stat {
    padding: 16px;
  }
  .stat > strong {
    font-size: 1.9rem;
  }
  .columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .card {
    padding: 20px;
  }
  .help-strip {
    flex-wrap: wrap;
  }
  .help-strip .button {
    margin-left: 0;
  }
  .help-symbol {
    display: none;
  }
  .prompt-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .version-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .version-link {
    min-width: 190px;
    max-width: 240px;
  }
  .public-steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-content {
    padding-top: 42px;
  }
  .hero-content .lead {
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .stats-grid,
  .stats-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid .featured {
    grid-column: 1/-1;
  }
  .stat > span {
    font-size: 0.8rem;
  }
  .stat > strong {
    font-size: 1.75rem;
  }
  .stat small {
    font-size: 0.75rem;
  }
  .card {
    padding: 18px;
    border-radius: 10px;
  }
  .section-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .section-heading .button {
    font-size: 0.8rem;
  }
  .generation-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .generation-row .pill {
    grid-column: 2;
    grid-row: auto;
  }
  .generation-row .model-meta {
    grid-column: 2;
  }
  .generation-text > strong {
    font-size: 0.9rem;
  }
  .generation-row .metadata {
    font-size: 0.75rem;
  }
  .filters {
    gap: 12px;
  }
  .filters label,
  .filters .search-label {
    min-width: 0;
    flex-basis: 100%;
  }
  .filters button {
    flex: 1;
  }
  .pagination {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .connection-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .audit-heading {
    flex-direction: column;
    gap: 5px;
  }
  .public-nav .button {
    font-size: 0.75rem;
    padding: 9px 11px;
  }
  .public-nav .brand small {
    display: none;
  }
  .public-nav .brand {
    font-size: 0.9rem;
  }
  .table-wrap table {
    min-width: 570px;
  }
  .page-footer {
    margin-top: 28px;
  }
  .code-display {
    font-size: 1.8rem;
  }
}
.hint {
  margin-top: 18px;
  font-size: 0.8rem;
}
.stat > strong.stat-text {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  padding: 6px 0;
}
@media (prefers-reduced-motion: no-preference) {
  a,
  button {
    transition:
      background-color 0.15s,
      border-color 0.15s,
      color 0.15s;
  }
}
