:root {
  color-scheme: light;
  --canvas: #ececea;
  --surface: #f8f8f5;
  --surface-raised: #ffffff;
  --surface-subtle: #e4e4e1;
  --ink: #181a1a;
  --ink-soft: #555a5a;
  --line: #cfd1cf;
  --line-strong: #9da19f;
  --carbon: #121414;
  --graphite: #1d2020;
  --steel: #7e8583;
  --fire: #ed5b1a;
  --success: #23784b;
  --success-bg: #deefe5;
  --warning: #986000;
  --warning-bg: #fff0cf;
  --danger: #b42d2d;
  --danger-bg: #f7dddd;
  --info: #245f91;
  --info-bg: #dfeaf4;
  --inactive: #626867;
  --radius-sm: 4px;
  --radius: 6px;
  --shadow: 0 8px 24px rgb(20 23 22 / 7%);
  font-family:
    Inter,
    Aptos,
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  background: var(--carbon);
}
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 32%) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--canvas);
}
button,
input,
select,
textarea {
  min-height: 44px;
  font: inherit;
}
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--carbon);
  border-radius: var(--radius-sm);
  padding: 0.68rem 0.95rem;
  background: var(--carbon);
  color: #fff;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}
button:hover:not(:disabled) {
  border-color: #2d3030;
  background: #2d3030;
}
button:active:not(:disabled) {
  transform: translateY(1px);
}
button.secondary {
  border-color: var(--line);
  background: var(--surface-raised);
  color: var(--ink);
}
button.secondary:hover:not(:disabled) {
  border-color: var(--line-strong);
  background: var(--surface-subtle);
}
button.danger {
  border-color: var(--danger);
  background: var(--danger);
}
button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(237 91 26 / 38%);
  outline-offset: 2px;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.035em;
}
h1 {
  margin-bottom: 0.32rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.08;
}
h2 {
  font-size: 1.18rem;
}
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}
.shell {
  min-height: 100vh;
}
.side {
  position: fixed;
  z-index: 20;
  inset: 0 auto 0 0;
  display: flex;
  width: 232px;
  flex-direction: column;
  padding: 1.35rem 0.9rem;
  overflow-y: auto;
  border-right: 1px solid #333737;
  background: radial-gradient(circle at 0 0, rgb(142 39 17 / 18%), transparent 34%), var(--carbon);
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 26%);
  border-bottom-color: var(--fire);
  border-radius: var(--radius-sm);
  background: #202323;
  color: #fff;
  letter-spacing: -0.06em;
}
.brand small {
  display: block;
  margin-top: 0.12rem;
  color: #989e9c;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.11em;
}
.nav {
  display: grid;
  gap: 0.15rem;
}
.nav button {
  position: relative;
  justify-content: flex-start;
  min-height: 46px;
  border-color: transparent;
  padding-inline: 0.75rem;
  background: transparent;
  color: #b9bfbd;
  font-size: 0.92rem;
  font-weight: 630;
}
.nav button:hover:not(:disabled) {
  border-color: #343838;
  background: #202323;
  color: #fff;
}
.nav button.active {
  border-color: #3a3e3d;
  background: #262929;
  color: #fff;
}
.nav button.active::before {
  position: absolute;
  inset: 9px auto 9px -0.9rem;
  width: 3px;
  background: var(--fire);
  content: '';
}
.side-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 1.1rem 0.7rem 0.2rem;
  color: #858c89;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.side-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgb(35 120 75 / 14%);
}
.main {
  width: min(calc(100% - 232px), 1480px);
  min-height: 100vh;
  margin-left: 232px;
  padding: 2rem clamp(1.4rem, 3vw, 3rem) 3rem;
}
.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.top p,
.muted {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}
.eyebrow {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.icon-button .icon {
  width: 1.05rem;
  height: 1.05rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 0.9rem;
}
.card {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}
.card h2,
.card h3 {
  margin-bottom: 0.8rem;
}
.metric {
  margin: 0.28rem 0;
  font-size: 2rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.05em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border: 1px solid #c5c9c7;
  border-radius: 3px;
  padding: 0.24rem 0.48rem;
  background: #e7e9e8;
  color: var(--inactive);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.badge.success {
  border-color: #a9d1ba;
  background: var(--success-bg);
  color: var(--success);
}
.badge.warning {
  border-color: #ead092;
  background: var(--warning-bg);
  color: var(--warning);
}
.badge.danger {
  border-color: #e0aaaa;
  background: var(--danger-bg);
  color: var(--danger);
}
.ops-hero {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #323635;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 96% 0, rgb(237 91 26 / 17%), transparent 30%),
    linear-gradient(120deg, #111313 0%, #1b1e1e 68%, #241611 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgb(17 19 19 / 15%);
}
.ops-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(90deg, rgb(255 255 255 / 10%) 1px, transparent 1px);
  background-size: 42px 100%;
  content: '';
}
.ops-context {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}
.ops-context .eyebrow,
.situation .eyebrow {
  color: #9da3a1;
}
.ops-context h2 {
  margin: 0;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}
.mode-signal {
  width: 10px;
  height: 30px;
  border-radius: 2px;
  background: var(--fire);
  box-shadow: 0 0 22px rgb(237 91 26 / 44%);
}
.mode-management .mode-signal,
.mode-closed .mode-signal {
  background: #777e7b;
  box-shadow: none;
}
.mode-prep .mode-signal,
.mode-closing .mode-signal {
  background: #e0a126;
  box-shadow: 0 0 20px rgb(224 161 38 / 25%);
}
.mode-time {
  margin-left: auto;
  color: #aeb4b2;
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
}
.situation {
  max-width: 820px;
  padding: clamp(1.4rem, 4vw, 2.3rem) 0 1.4rem;
}
.situation p {
  margin: 0;
  font-size: clamp(1.35rem, 3.1vw, 2.35rem);
  font-weight: 690;
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-actions > button:first-child {
  border-color: var(--fire);
  background: var(--fire);
  color: #fff;
}
.hero-actions > button:first-child:hover:not(:disabled) {
  border-color: #ff6b27;
  background: #ff6b27;
}
.dark-secondary {
  border-color: #454a48;
  background: #242727;
  color: #fff;
}
.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 1rem;
}
.work-stack,
.pulse-panel,
.module-directory {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}
.section-heading h2,
.module-directory h2 {
  margin-bottom: 0;
}
.count {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}
.action-list {
  border-top: 1px solid var(--line);
}
.action-row {
  display: grid;
  width: 100%;
  grid-template-columns: 32px 1fr auto;
  gap: 0.75rem;
  min-height: 72px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 0.25rem;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.action-row:hover:not(:disabled) {
  border-color: var(--line);
  background: #f1f1ee;
}
.action-row.primary-row {
  box-shadow: inset 3px 0 var(--fire);
}
.action-row strong,
.directory-item strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 0.98rem;
}
.action-row small,
.directory-item small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}
.action-index {
  color: var(--steel);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}
.arrow {
  color: var(--fire);
  font-size: 1.1rem;
}
.pulse-panel {
  background: #dadcda;
}
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #bfc3c0;
  background: #bfc3c0;
}
.pulse-grid button {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  border: 0;
  border-radius: 0;
  padding: 0.9rem;
  background: #f5f5f2;
  color: var(--ink);
  text-align: left;
}
.pulse-grid button:hover:not(:disabled) {
  background: #fff;
}
.pulse-grid span,
.pulse-grid small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}
.pulse-grid strong {
  font-size: 1.8rem;
  line-height: 1;
}
.pulse-grid .metric-word {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.toolbar,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.toolbar input,
.toolbar select,
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.66rem 0.72rem;
  background: #fff;
  color: var(--ink);
}
.form textarea {
  min-height: 90px;
  resize: vertical;
}
.toolbar input {
  flex: 1 1 220px;
}
.toolbar select {
  width: auto;
  min-width: 190px;
}
.list {
  display: grid;
  gap: 0.55rem;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: var(--surface-raised);
}
.row strong {
  display: block;
}
.row small {
  display: block;
  margin-top: 0.16rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-variant-numeric: tabular-nums;
}
.table th,
.table td {
  padding: 0.78rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}
.table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #eceeec;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}
.table tbody tr:hover {
  background: #f6f6f3;
}
.state {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 3rem 1rem;
  background: var(--surface-raised);
  text-align: center;
}
.state::before {
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto 1rem;
  background: var(--steel);
  content: '';
}
.state.error {
  border-color: var(--danger);
  background: var(--danger-bg);
}
.state.error::before {
  background: var(--danger);
}
.state p {
  color: var(--ink-soft);
}
.form {
  display: grid;
  gap: 0.9rem;
}
.form label {
  display: grid;
  gap: 0.34rem;
  color: #343838;
  font-size: 0.87rem;
  font-weight: 720;
}
.form small {
  color: var(--ink-soft);
  font-weight: 500;
}
.notice {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #dfc481;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: var(--warning-bg);
  color: #563a08;
}
.notice.info {
  border-color: #a8c4db;
  border-left-color: var(--info);
  background: var(--info-bg);
  color: #183f60;
}
.tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  overflow: auto;
  scrollbar-width: thin;
}
.tabs button {
  flex: 0 0 auto;
  white-space: nowrap;
}
.tabs button.active {
  border-color: var(--carbon);
  outline: 0;
  background: var(--carbon);
  color: #fff;
}
.feedback {
  position: sticky;
  z-index: 8;
  top: 0.65rem;
  margin-bottom: 1rem;
  border: 1px solid #a9d1ba;
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: var(--success-bg);
  color: var(--success);
  box-shadow: var(--shadow);
  font-weight: 700;
}
.inline-error {
  border-left: 4px solid var(--danger);
  padding: 0.75rem;
  background: var(--danger-bg);
  color: var(--danger);
}
.fact {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.72rem 0;
}
.fact span {
  color: var(--ink-soft);
}
.module-directory {
  margin-bottom: 1rem;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.directory-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: initial;
  min-height: 74px;
  border-color: var(--line);
  background: #f6f6f3;
  color: var(--ink);
  text-align: left;
}
.directory-item:hover:not(:disabled) {
  border-color: var(--line-strong);
  background: #fff;
}
.settings-card {
  box-shadow: none;
}
.analysis-summary {
  margin-bottom: 1rem;
  border: 1px solid #343837;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--graphite);
  color: #fff;
}
.analysis-summary h2 {
  max-width: 800px;
  margin-bottom: 1.1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.25;
}
.analysis-summary .eyebrow,
.analysis-summary small {
  color: #aeb4b2;
}
.completion {
  height: 6px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  border-radius: 2px;
  background: #383c3b;
}
.completion span {
  display: block;
  height: 100%;
  background: var(--success);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.metric-card {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}
.metric-card span,
.metric-card small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.metric-card strong {
  display: block;
  margin: 0.75rem 0 0.45rem;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}
.bottom {
  display: none;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.login-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  background: var(--carbon);
}
.login-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 20% 100%, rgb(237 91 26 / 24%), transparent 34%),
    linear-gradient(145deg, #101212, #202323);
  color: #fff;
}
.login-brand h1 {
  max-width: 520px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.login-brand p {
  max-width: 500px;
  color: #aeb4b2;
  font-size: 1.05rem;
  line-height: 1.55;
}
.login-brand .eyebrow {
  color: var(--fire);
}
.login-panel {
  display: flex;
  width: min(100%, 620px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 6rem);
  background: var(--surface);
}
.login-panel > div p {
  color: var(--ink-soft);
  line-height: 1.5;
}
.login-panel form {
  margin-top: 1.2rem;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .side {
    width: 196px;
  }
  .main {
    width: calc(100% - 196px);
    margin-left: 196px;
    padding: 1.5rem;
  }
  .ops-layout {
    grid-template-columns: 1fr;
  }
  .pulse-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .pulse-grid button {
    min-height: 104px;
  }
}
@media (max-width: 760px) {
  body {
    background: var(--canvas);
  }
  .side {
    display: none;
  }
  .main {
    width: 100%;
    margin: 0;
    padding: 1rem 1rem calc(5.3rem + env(safe-area-inset-bottom));
  }
  .top {
    align-items: center;
    margin-bottom: 1rem;
  }
  .top h1 {
    font-size: 1.55rem;
  }
  .top p {
    max-width: 230px;
    font-size: 0.84rem;
  }
  .top .eyebrow {
    display: none;
  }
  .icon-button {
    width: 44px;
    padding: 0;
  }
  .icon-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .bottom {
    position: fixed;
    z-index: 30;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #353938;
    padding: 0.35rem 0.3rem calc(0.35rem + env(safe-area-inset-bottom));
    background: rgb(18 20 20 / 97%);
    box-shadow: 0 -6px 20px rgb(0 0 0 / 16%);
  }
  .bottom button {
    display: flex;
    min-width: 0;
    min-height: 52px;
    flex-direction: column;
    gap: 0.22rem;
    border: 0;
    padding: 0.3rem 0.1rem;
    background: transparent;
    color: #919896;
    font-size: 0.68rem;
    font-weight: 650;
  }
  .bottom button:hover:not(:disabled) {
    background: transparent;
  }
  .bottom button.active {
    color: #fff;
  }
  .bottom button.active .icon {
    color: var(--fire);
  }
  .bottom .icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .ops-hero {
    margin-inline: -1rem;
    border-width: 1px 0;
    border-radius: 0;
    padding: 1.25rem 1rem 1.35rem;
  }
  .situation {
    padding: 1.35rem 0;
  }
  .situation p {
    font-size: 1.45rem;
  }
  .hero-actions button {
    flex: 1 1 145px;
  }
  .ops-layout,
  .grid {
    grid-template-columns: 1fr;
  }
  .work-stack,
  .pulse-panel,
  .module-directory,
  .card {
    padding: 1rem;
  }
  .pulse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pulse-grid button {
    min-height: 104px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .toolbar select {
    width: 100%;
  }
  .notice {
    flex-direction: column;
  }
  .login-shell {
    display: block;
    background: var(--surface);
  }
  .login-brand {
    min-height: 275px;
    padding: 1.4rem 1.2rem;
  }
  .login-brand h1 {
    font-size: 2.5rem;
  }
  .login-brand p {
    margin-bottom: 0;
    font-size: 0.92rem;
  }
  .login-panel {
    width: 100%;
    padding: 1.5rem 1.2rem 2.5rem;
  }
}
@media (max-width: 560px) {
  .row {
    align-items: stretch;
    flex-direction: column;
  }
  .row input,
  .row button {
    width: 100%;
  }
  .fact {
    flex-direction: column;
    gap: 0.25rem;
  }
  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table thead {
    display: none;
  }
  .table tr {
    margin-bottom: 0.7rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 12px rgb(20 23 22 / 5%);
  }
  .table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.62rem 0.8rem;
    border-bottom: 1px solid #e5e6e4;
    white-space: normal;
    text-align: right;
  }
  .table td::before {
    color: var(--ink-soft);
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 750;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .table td:first-child {
    align-items: flex-start;
    background: #eceeec;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
