:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #16212f;
  background: #f4f6f8;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: #f4f6f8;
}

.web-login-panel {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  justify-items: center;
}

.web-login-form {
  display: grid;
  gap: 14px;
  width: min(420px, 100%);
  border: 1px solid #d7dde5;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
}

.web-login-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.web-login-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #c8d0da;
  border-radius: 8px;
  padding: 8px 10px;
  color: #16212f;
  background: #ffffff;
  font: inherit;
}

.web-login-form input:focus {
  border-color: #2f5f78;
  outline: 3px solid rgba(47, 95, 120, .16);
}

.web-login-status,
.web-batch-status {
  min-height: 20px;
}

.web-login-status {
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
}

.review-shell {
  display: grid;
  gap: 16px;
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eyebrow,
.eob-eyebrow,
h1,
h2,
p {
  margin: 0;
}

.eyebrow,
.eob-eyebrow {
  color: #5d6978;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

button {
  border: 1px solid #2f5f78;
  border-radius: 8px;
  padding: 9px 12px;
  color: #ffffff;
  background: #2f5f78;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #264d61;
}

button:disabled {
  border-color: #c8d0da;
  color: #758195;
  background: #eef1f5;
  cursor: not-allowed;
}

.secondary-action {
  border-color: #c8d0da;
  color: #2c3a4b;
  background: #ffffff;
}

.secondary-action:hover {
  border-color: #9ca8b8;
  background: #f8fafc;
}

.send-problems-dialog {
  width: min(360px, calc(100vw - 32px));
  border: 1px solid #c8d0da;
  border-radius: 8px;
  padding: 0;
  color: #16212f;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
}

.send-problems-dialog::backdrop {
  background: rgba(15, 23, 42, .24);
}

.send-problems-dialog #sendProblemsDialogBody {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.send-problems-dialog h2 {
  color: #334155;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.send-problems-dialog fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.send-problems-dialog legend {
  margin-bottom: 2px;
  color: #647183;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.send-problems-dialog label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  padding: 10px;
  color: #334155;
  background: #fbfcfd;
  font-weight: 800;
}

.send-problems-dialog input {
  width: 18px;
  height: 18px;
  accent-color: #2f5f78;
}

.send-problems-dialog b {
  color: #647183;
}

.send-problems-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #d7dde5;
}

.summary div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #ffffff;
}

.label {
  color: #647183;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary strong {
  font-size: 24px;
}

.eob-search-bar {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
}

.eob-search-bar label {
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.eob-search-bar input {
  width: 100%;
  min-height: 38px;
  border: 1px solid #c8d0da;
  border-radius: 8px;
  padding: 8px 10px;
  color: #16212f;
  background: #ffffff;
  font: inherit;
  font-weight: 750;
}

.eob-search-bar input:focus {
  border-color: #2f5f78;
  outline: 3px solid rgba(47, 95, 120, .16);
}

.eob-search-status {
  min-width: 92px;
  color: #647183;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.notice,
.empty,
.weekly-log,
.automation-logs {
  border: 1px solid #d7dde5;
  border-radius: 8px;
  padding: 14px;
  color: #3f4a59;
  background: #ffffff;
}

.submit-status {
  border-color: #b7dec9;
  color: #17543b;
  background: #f0fbf5;
}

.weekly-log {
  padding: 0;
  overflow: hidden;
}

.automation-logs {
  display: grid;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.automation-logs ol {
  display: grid;
  gap: 6px;
  margin-left: 18px;
}

.automation-logs h2 {
  color: #334155;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.weekly-menu {
  display: grid;
}

.weekly-menu-summary {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

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

.weekly-menu-title {
  color: #334155;
  font-size: 15px;
  font-weight: 850;
}

.weekly-menu-count {
  min-width: 30px;
  border-radius: 999px;
  padding: 3px 9px;
  color: #17543b;
  background: #f0fbf5;
  font-size: 12px;
  text-align: center;
}

.weekly-menu-preview {
  overflow: hidden;
  color: #647183;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weekly-menu-arrow {
  color: #2f5f78;
  font-size: 24px;
  line-height: 1;
  transition: transform .16s ease;
}

.weekly-menu[open] .weekly-menu-arrow {
  transform: rotate(90deg);
}

.weekly-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}

.weekly-list span {
  border: 1px solid #b7dec9;
  border-radius: 999px;
  padding: 6px 10px;
  color: #17543b;
  background: #f0fbf5;
  font-size: 12px;
  font-weight: 750;
}

.eobs {
  display: grid;
  gap: 16px;
}

.eob-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #c8d0da;
  border-radius: 8px;
  padding: 12px;
  color: #647183;
  background: #ffffff;
  font-weight: 800;
}

.eob-search-empty {
  border: 1px dashed #c8d0da;
  border-radius: 8px;
  padding: 14px;
  color: #647183;
  background: #ffffff;
  font-weight: 800;
  text-align: center;
}

.eobs[hidden] {
  display: none !important;
}

.review-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-tab {
  width: auto;
  color: #2f5f78;
  background: #ffffff;
}

.review-tab.is-active {
  color: #ffffff;
  background: #2f5f78;
}

.posted-tab.is-active {
  border-color: #5c6f2f;
  background: #5c6f2f;
}

.only-problems-tab {
  margin-left: auto;
}

.only-problems-tab.is-active {
  border-color: #b23a3a;
  background: #b23a3a;
}

.eob-card {
  display: grid;
  gap: 12px;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.eob-card.has-issues {
  border-left: 5px solid #b23a3a;
}

.eob-card.is-approved {
  border-left: 5px solid #2f8f63;
}

.eob-card.is-posted {
  border-left: 5px solid #5c6f2f;
}

.eob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 0;
}

.eob-header h2 {
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.eob-title-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.eob-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delete-eob,
.download-eob {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 0 5px;
  border-color: #b23a3a;
  border-radius: 50%;
  padding: 0;
  color: #ffffff;
  background: #b23a3a;
  font-size: 14px;
  line-height: 1;
}

.delete-eob:hover {
  border-color: #8f2f2f;
  background: #8f2f2f;
}

.download-eob {
  border-color: #2f5f78;
  color: #ffffff;
  background: #2f5f78;
}

.download-eob:hover {
  border-color: #264d61;
  background: #264d61;
}

.document-lazy-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed #c8d0da;
  border-radius: 8px;
  color: #647183;
  background: #f8fafc;
  font-weight: 800;
}

.approve {
  min-width: 118px;
  border-color: #2f8f63;
  background: #2f8f63;
}

.approve:hover {
  background: #26764f;
}

.approve.unapprove {
  border-color: #b23a3a;
  background: #b23a3a;
}

.approve.unapprove:hover {
  background: #8f2f2f;
}

.approve.post {
  border-color: #5c6f2f;
  background: #5c6f2f;
}

.approve.post:hover {
  background: #4b5b27;
}

.eob-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 16px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  background: #e1e6ed;
  overflow: hidden;
}

.eob-summary span {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: #fbfcfd;
}

.eob-summary b {
  color: #667085;
  font-size: 11px;
  text-transform: uppercase;
}

.eob-body {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.pdf-review {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #f8fafc;
}

.eob-frame {
  width: 100%;
  height: 520px;
  border: 0;
  background: #f8fafc;
}

.document-placeholder {
  border: 1px dashed #c8d0da;
  border-radius: 8px;
  padding: 14px;
  color: #667085;
  background: #f8fafc;
}

.line-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  font-size: 13px;
}

.line-table th,
.line-table td {
  padding: 7px 8px;
  border-bottom: 1px solid #e6ebf0;
  text-align: left;
  vertical-align: top;
}

.line-table th {
  color: #667085;
  background: #f8fafc;
  font-size: 11px;
  text-transform: uppercase;
}

.line-table th:last-child {
  min-width: 260px;
}

.line-table th:last-child span {
  margin-right: 8px;
}

.show-all-codes {
  float: right;
  border-color: #c8d0da;
  border-radius: 6px;
  padding: 4px 7px;
  color: #2f5f78;
  background: #ffffff;
  font-size: 11px;
  line-height: 1.1;
  text-transform: none;
}

.show-all-codes:hover {
  background: #eef3f8;
}

.line-table tr:last-child td {
  border-bottom: 0;
}

.dos-visit-link {
  appearance: none;
  border: 0;
  padding: 0;
  color: #244b62;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.dos-visit-link:hover,
.dos-visit-link:focus-visible {
  color: #16384b;
}

.dos-visit-link:disabled {
  color: #667085;
  cursor: wait;
}

.all-clear-row td {
  color: #647183;
  background: #ffffff;
  font-weight: 750;
}

.line-has-issue td {
  background: #fffafa;
}

.line-paid-this-eob td {
  background: #fbfde9;
}

.line-buy-and-bill td {
  background: #faf5ff;
}

.claim-divider td {
  padding: 8px 10px;
  color: #334155;
  background: #eef3f8;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.problem-cell {
  width: 72px;
  text-align: center !important;
}

.problem-cell input {
  width: 18px;
  height: 18px;
}

.notes-cell {
  min-width: 220px;
}

.notes-cell textarea {
  width: 100%;
  min-height: 42px;
  resize: vertical;
  border: 1px solid #c8d0da;
  border-radius: 6px;
  padding: 6px 7px;
  color: #16212f;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
}

.line-is-problem .problem-cell {
  outline: 0;
}

.issue-cell {
  min-width: 260px;
}

.review-toggle {
  display: block;
  width: 100%;
  min-height: 34px;
  border-color: #c8d0da;
  border-radius: 6px;
  padding: 7px 9px;
  color: #334155;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
}

.review-toggle:hover {
  border-color: #9ca8b8;
  color: #16212f;
  background: #f8fafc;
}

.review-toggle.has-issue {
  border-color: #f0c3c3;
  color: #7f1d1d;
  background: #fff1f1;
}

.review-toggle.paid-this-eob {
  border-color: #c9d982;
  color: #415900;
  background: #f2f9d7;
}

.review-toggle.buy-and-bill {
  border-color: #d8c4f4;
  color: #5b2f8f;
  background: #f5edff;
}

.review-toggle.is-written-off {
  border-color: #95c6ad;
  color: #17543b;
  background: #e5f8ee;
}

.issue-pill {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  padding: 9px;
  font-weight: 750;
}

.issue-pill:last-child {
  margin-bottom: 0;
}

.issue-pill.alert {
  border: 1px solid #f0c3c3;
  color: #7f1d1d;
  background: #fff1f1;
}

.issue-pill.paid-this-eob {
  border-color: #c9d982;
  color: #415900;
  background: #f2f9d7;
}

.issue-pill.buy-and-bill {
  border-color: #d8c4f4;
  color: #5b2f8f;
  background: #f5edff;
}

.issue-link {
  width: fit-content;
  color: #2f5f78;
  font-size: 12px;
  font-weight: 800;
}

.review-visit-link {
  display: inline-block;
  margin-top: 5px;
}

.issue-pill.question {
  border: 1px solid #b7dec9;
  color: #17543b;
  background: #f0fbf5;
}

.issue-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.issue-credit {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #95c6ad;
  border-radius: 6px;
  padding: 5px 7px;
  color: #143f2f;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.issue-pill.is-written-off {
  background: #e5f8ee;
}

.decision-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.decision {
  padding: 6px 10px;
  border-color: #2f8f63;
  background: #2f8f63;
  font-size: 12px;
}

.decision.no {
  color: #2f5f78;
  background: #ffffff;
}

.decision.is-selected {
  box-shadow: 0 0 0 2px rgba(47, 143, 99, .2);
}

.unplaced {
  display: grid;
  gap: 8px;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  padding: 12px;
  color: #667085;
  background: #fbfcfd;
}

@media (max-width: 860px) {
  .eob-search-bar {
    grid-template-columns: 1fr;
  }

  .eob-search-status {
    min-width: 0;
    text-align: left;
  }

  .summary,
  .eob-summary {
    grid-template-columns: 1fr;
  }

  .eob-header {
    align-items: stretch;
    flex-direction: column;
  }

  .approve {
    width: 100%;
  }

  .line-table {
    display: block;
    overflow-x: auto;
  }
}

/* Layra demo surface */
:root {
  --layra-ink: #13211c;
  --layra-muted: #6c756f;
  --layra-paper: #f4f1e9;
  --layra-surface: #fffdf8;
  --layra-green: #2d6e5a;
  --layra-green-dark: #1f5546;
  --layra-green-soft: #e5eee8;
  --layra-line: rgba(19, 33, 28, .13);
}

body {
  color: var(--layra-ink);
  background: radial-gradient(circle at 90% 0, rgba(237, 220, 174, .25), transparent 30%), radial-gradient(circle at 8% 92%, rgba(180, 218, 224, .18), transparent 30%), var(--layra-paper);
}

.review-shell { width: min(1460px, calc(100vw - 40px)); gap: 13px; padding: 22px 0 42px; }
.topbar { min-height: 58px; padding-bottom: 12px; border-bottom: 1px solid var(--layra-line); }
.review-heading, .demo-brand { display: flex; align-items: center; gap: 12px; }
.review-heading { gap: 28px; }
.demo-brand-orbit { width: 30px; height: 30px; border-radius: 50%; background: conic-gradient(from 30deg, #c6e6ee, #f3dca7, #d5ecdf, #bddde9, #c6e6ee); -webkit-mask: radial-gradient(circle, transparent 48%, #000 51%); mask: radial-gradient(circle, transparent 48%, #000 51%); }
.demo-brand strong { font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 31px; font-weight: 500; letter-spacing: -.04em; }
.eyebrow, .eob-eyebrow { color: var(--layra-green); font-size: 9px; letter-spacing: .12em; }
h1 { margin-top: 2px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 24px; font-weight: 500; letter-spacing: -.025em; }

button { border-color: var(--layra-green); border-radius: 7px; color: #fff; background: var(--layra-green); font-size: 12px; }
button:hover { background: var(--layra-green-dark); }
.secondary-action, .watch-screen-action, .watch-eob { border-color: var(--layra-line); color: var(--layra-ink); background: var(--layra-surface); }
.watch-screen-action, .watch-eob { border-color: rgba(45, 110, 90, .28); color: var(--layra-green-dark); background: var(--layra-green-soft); }
.secondary-action:hover, .watch-screen-action:hover, .watch-eob:hover { color: var(--layra-green-dark); background: #eef4ef; }

.notice, .summary, .eob-search-bar, .eob-card, .empty { border-color: var(--layra-line); background: rgba(255, 253, 248, .9); box-shadow: 0 18px 55px rgba(38, 45, 40, .08); }
.web-batch-status { min-height: 0; padding: 8px 11px; color: var(--layra-muted); background: rgba(255, 253, 248, .58); font-size: 11px; }
.summary { border-radius: 9px; background: var(--layra-line); }
.summary div, .eob-summary span { background: var(--layra-surface); }
.summary .label, .eob-summary b { color: var(--layra-muted); }
.summary strong { color: var(--layra-ink); }
.demo-session .summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.demo-session .summary > div:nth-child(3) { display: none; }

.review-tab { border-color: var(--layra-line); color: var(--layra-green-dark); background: var(--layra-surface); }
.review-tab.is-active, .posted-tab.is-active { border-color: var(--layra-green); background: var(--layra-green); }
.eob-card { border-radius: 10px; }
.eob-card.has-issues { border-left-color: #a9652b; }
.eob-card.is-approved, .eob-card.is-posted { border-left-color: var(--layra-green); }
.eob-header h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 19px; font-weight: 500; }
.approve { border-color: var(--layra-green); background: var(--layra-green); }
.approve:hover { background: var(--layra-green-dark); }

.demo-scan-panel { display: grid; grid-template-columns: minmax(280px, 1fr) auto; align-items: center; gap: 18px; border: 1px solid rgba(45, 110, 90, .22); border-radius: 9px; padding: 12px 14px; color: var(--layra-green-dark); background: var(--layra-green-soft); }
.demo-scan-route { display: grid; grid-template-columns: 10px auto; gap: 3px 9px; align-items: center; }
#demoScanPulse { width: 8px; height: 8px; grid-row: span 2; border-radius: 50%; background: #4a9b78; box-shadow: 0 0 0 4px rgba(74, 155, 120, .14); }
.demo-scan-route strong { font-size: 12px; }
.demo-scan-route small { color: #557067; font-size: 10px; }
.demo-scan-panel ol { display: flex; gap: 6px; margin: 0; padding: 0; list-style: none; }
.demo-scan-panel li { padding: 6px 8px; border: 1px solid rgba(45, 110, 90, .16); border-radius: 6px; color: #64726c; background: rgba(255,255,255,.55); font-size: 9px; font-weight: 750; }
.demo-scan-panel li.is-active { color: #fff; background: var(--layra-green); }
.demo-scan-panel li.is-complete::before { content: "✓ "; color: var(--layra-green); }
.inline-watch-action { margin-left: 10px; border-color: rgba(45, 110, 90, .25); padding: 5px 9px; color: var(--layra-green-dark); background: var(--layra-green-soft); font-size: 10px; }
.demo-audit-dialog { width: min(900px, calc(100vw - 40px)); max-height: 86vh; padding: 0; overflow: hidden; border: 1px solid var(--layra-line); border-radius: 12px; color: var(--layra-ink); background: var(--layra-surface); box-shadow: 0 28px 90px rgba(25,34,29,.24); }.demo-audit-dialog::backdrop { background: rgba(18,28,23,.46); backdrop-filter: blur(4px); }.demo-audit-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--layra-line); }.demo-audit-header h2 { margin: 3px 0 0; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 28px; font-weight: 500; }.demo-audit-header button { width: 34px; height: 34px; padding: 0; border-radius: 50%; font-size: 20px; }.demo-audit-content { max-height: calc(86vh - 80px); display: grid; gap: 12px; padding: 18px 24px 28px; overflow-y: auto; }.demo-audit-record { overflow: hidden; border: 1px solid var(--layra-line); border-radius: 10px; background: #fff; }.demo-audit-record > header { display: flex; align-items: center; justify-content: space-between; padding: 14px 17px; border-bottom: 1px solid var(--layra-line); background: rgba(229,238,232,.45); }.demo-audit-record header small { color: var(--layra-muted); font-size: 9px; text-transform: uppercase; }.demo-audit-record h3 { margin: 3px 0 0; font-size: 15px; }.demo-audit-record header span { padding: 5px 8px; border-radius: 99px; font-size: 8px; font-weight: 850; text-transform: uppercase; }.demo-audit-record header span.posted,.demo-audit-record header span.reviewed { color: var(--layra-green-dark); background: var(--layra-green-soft); }.demo-audit-record header span.pending { color: #7b522f; background: #f7eadc; }.demo-audit-record ol { margin: 0; padding: 8px 18px 14px; list-style: none; }.demo-audit-record li { position: relative; display: grid; grid-template-columns: 24px 1fr; gap: 9px; padding: 8px 0; }.demo-audit-record li:not(:last-child)::after { content: ""; position: absolute; left: 11px; top: 31px; bottom: -5px; width: 1px; background: var(--layra-line); }.demo-audit-record li > b { width: 23px; height: 23px; display: grid; place-items: center; z-index: 1; border-radius: 50%; color: var(--layra-green); background: var(--layra-green-soft); font-size: 9px; }.demo-audit-record li.warning > b { color: #8a552a; background: #f7eadc; }.demo-audit-record li div { display: grid; gap: 3px; }.demo-audit-record li small { color: var(--layra-muted); font-size: 8px; text-transform: uppercase; }.demo-audit-record li strong { font-size: 11px; }.demo-audit-record li p { margin: 0; color: var(--layra-muted); font-size: 9px; line-height: 1.45; }.eob-audit-action { min-width: 82px; }

.layra-demo-guide {
  --guide-x: 50vw;
  --guide-y: 30vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 2147483000;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--guide-x), var(--guide-y), 0);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
  will-change: transform;
}
.layra-demo-guide.is-visible { opacity: 1; }
.layra-demo-guide.is-dragging { transition: none; }
.layra-guide-pointer {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 49px;
  height: 57px;
  background: linear-gradient(145deg, #78c6a1 0%, #4a9f79 62%, #34775c 100%);
  clip-path: polygon(6% 3%, 93% 58%, 62% 67%, 77% 93%, 58% 100%, 42% 71%, 17% 94%);
  filter: drop-shadow(0 0 1px rgba(255,255,255,.95)) drop-shadow(0 9px 12px rgba(28, 72, 54, .28));
  transform: rotate(-8deg);
  transition: filter .18s ease, transform .18s ease;
  touch-action: none;
}
.layra-demo-guide.is-draggable .layra-guide-pointer { pointer-events: auto; cursor: grab; }
.layra-demo-guide.is-dragging .layra-guide-pointer { cursor: grabbing; filter: drop-shadow(0 0 1px #fff) drop-shadow(0 12px 16px rgba(28,72,54,.34)); transform: rotate(-8deg) scale(1.04); }
.layra-guide-bubble {
  position: absolute;
  left: 34px;
  top: 38px;
  width: min(310px, calc(100vw - 54px));
  padding: 15px 17px 16px;
  border: 1px solid rgba(45, 110, 90, .24);
  border-radius: 17px;
  color: #17392e;
  background: rgba(247, 252, 248, .96);
  box-shadow: 0 18px 50px rgba(25, 62, 47, .18), inset 0 1px rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px);
}
.layra-demo-guide.is-wide .layra-guide-bubble { width: min(390px, calc(100vw - 54px)); }
.layra-demo-guide.is-centered .layra-guide-bubble { left: 50%; right: auto; transform: translateX(-50%); }
.layra-demo-guide.is-left .layra-guide-bubble { left: auto; right: 30px; }
.layra-demo-guide.is-above .layra-guide-bubble { top: auto; bottom: 34px; }
.layra-guide-bubble small { display: block; margin-bottom: 6px; color: #3f936f; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.layra-guide-bubble p { margin: 0; font-size: 13px; font-weight: 700; line-height: 1.52; letter-spacing: -.01em; }
.layra-guide-target { position: relative; z-index: 2; outline: 3px solid rgba(63, 147, 111, .22) !important; outline-offset: 4px; animation: layraGuideTarget 1.9s ease-in-out infinite; }
@keyframes layraGuideTarget { 0%, 100% { outline-color: rgba(63, 147, 111, .18); } 50% { outline-color: rgba(63, 147, 111, .58); } }

@media (prefers-reduced-motion: reduce) {
  .layra-demo-guide { transition-duration: .01ms; }
  .layra-guide-target { animation: none; }
}

@media (max-width: 900px) {
  .demo-scan-panel { grid-template-columns: 1fr; }
  .demo-scan-panel ol { flex-wrap: wrap; }
  .review-heading { gap: 14px; }
  .layra-guide-bubble, .layra-demo-guide.is-wide .layra-guide-bubble { width: min(280px, calc(100vw - 44px)); padding: 13px 14px; }
}
