:root {
  --navy: #101a3d;
  --navy-soft: rgba(16, 26, 61, 0.78);
  --ink: #182754;
  --gold: #d6b062;
  --gold-soft: rgba(214, 176, 98, 0.18);
  --rose: #ef7ba7;
  --mist: #e4e9f4;
  --paper: #f8f3ea;
  --panel: rgba(255, 255, 255, 0.88);
  --line: rgba(16, 26, 61, 0.1);
  --shadow: 0 18px 50px rgba(8, 17, 46, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 123, 167, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(214, 176, 98, 0.22), transparent 30%),
    linear-gradient(135deg, #0e1738 0%, #16224b 46%, #f5efe5 46%, #f7f3ec 100%);
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
}

.shell {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
  animation: rise 0.55s ease-out;
}

.rail,
.panel-card,
.metric-card,
.hero-panel {
  backdrop-filter: blur(10px);
}

.rail {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(10, 18, 43, 0.94), rgba(26, 37, 82, 0.88));
  color: white;
  box-shadow: var(--shadow);
  scrollbar-width: thin;
}

.brand-lockup {
  display: flex;
  gap: 16px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 2rem;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(214, 176, 98, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-lockup h1,
.page-header h2,
.hero-panel h3,
.client-card h3,
.practice-card h2 {
  margin: 0;
  font-family: "Palatino Linotype", Garamond, serif;
}

.eyebrow,
.kicker,
.section-heading,
.brand-tagline,
.metric-card p,
.snapshot-card p,
.detail-grid span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.practice-card,
.panel-card,
.metric-card,
.hero-panel {
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.practice-card {
  color: white;
  padding: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), linear-gradient(160deg, var(--client-primary), rgba(10, 18, 43, 0.96) 64%);
}

.logo-frame {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 700;
  overflow: hidden;
}

.logo-frame.has-image {
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.logo-frame img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
}

.subnav,
.client-stack,
.stack-list,
.bar-list,
.badge-cloud {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subnav a,
.client-chip,
.claim-feed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.subnav a:hover,
.client-chip:hover,
.claim-feed-row:hover,
.client-card:hover {
  transform: translateY(-2px);
}

.subnav a,
.client-chip {
  background: rgba(255, 255, 255, 0.06);
}

.client-chip.active,
.claim-feed-row.active {
  background: rgba(214, 176, 98, 0.18);
  border: 1px solid rgba(214, 176, 98, 0.35);
}

.client-chip div,
.list-row div,
.bar-row div,
.claim-feed-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-chip span,
.list-row span,
.bar-row span,
.claim-feed-row span,
.metric-card span,
.snapshot-card span,
.detail-grid strong {
  font-size: 0.92rem;
}

.main-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quick-nav-strip {
  position: sticky;
  top: 16px;
  z-index: 12;
  border: 1px solid rgba(16, 26, 61, 0.1);
  background: rgba(248, 243, 234, 0.94);
}

.quick-nav-links {
  align-items: center;
  gap: 10px;
}

.quick-nav-links .ghost-button,
.quick-nav-links .cta-button {
  min-height: 42px;
}

.quick-nav-anchor {
  background: rgba(16, 26, 61, 0.9);
  color: #ffffff;
}

.quick-nav-anchor:hover {
  background: rgba(16, 26, 61, 0.78);
}

.reference-hub {
  border: 1px solid rgba(214, 176, 98, 0.34);
  background: linear-gradient(145deg, rgba(214, 176, 98, 0.2), rgba(255, 255, 255, 0.95));
}

.reference-hub-title {
  display: block;
  margin: 6px 0 0;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.35rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  color: white;
}

.hero-panel,
.panel-card {
  padding: 24px;
}

.hero-panel {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.hero-panel h3 {
  font-size: 2rem;
  margin: 6px 0 10px;
}

.metric-grid,
.two-column,
.portfolio-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card strong,
.snapshot-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.7rem;
  font-family: "Palatino Linotype", Garamond, serif;
}

.client-card,
.snapshot-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(214, 176, 98, 0.16), rgba(255, 255, 255, 0.94));
  color: inherit;
  text-decoration: none;
}

.card-topline,
.list-row,
.bar-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.table-wrap {
  overflow: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  background: rgba(16, 26, 61, 0.04);
}

.table-wrap input[type="number"] {
  width: 112px;
  border: 1px solid rgba(16, 26, 61, 0.14);
  border-radius: 8px;
  padding: 8px 9px;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

.table-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.table-wrap .field-help {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-pill.live {
  background: rgba(67, 171, 123, 0.14);
  color: #16764e;
}

.status-pill.pending,
.status-pill.warning {
  background: rgba(239, 123, 167, 0.12);
  color: #a13e69;
}

.status-pill.neutral {
  background: rgba(214, 176, 98, 0.2);
  color: #6b4b11;
  border: 1px solid rgba(214, 176, 98, 0.34);
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inline-form input,
.inline-form select,
.cta-button,
.ghost-button {
  border-radius: 14px;
  padding: 11px 14px;
  font: inherit;
}

.inline-form input,
.inline-form select {
  min-width: 150px;
  border: 1px solid rgba(16, 26, 61, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-button {
  background: linear-gradient(135deg, var(--gold), #f0d79a);
  color: #39290a;
}

.ghost-button {
  background: rgba(16, 26, 61, 0.08);
  color: var(--ink);
}

.empty-note,
.empty-state,
.lede {
  color: rgba(24, 39, 84, 0.8);
}

.compact-grid,
.tall-card,
.workspace-grid {
  min-height: 0;
}

.claim-feed {
  max-height: 780px;
  overflow: auto;
}

.spaced {
  margin-top: 18px;
}

.spaced-none {
  margin-top: 0;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .shell { grid-template-columns: 1fr; }
  .rail { position: static; max-height: none; overflow: visible; }
  .quick-nav-strip { top: 12px; }
}

@media (max-width: 760px) {
  .shell, .main-panel, .page-header, .hero-panel { gap: 16px; }
  .shell { padding: 14px; }
  .hero-panel, .page-header, .two-column { grid-template-columns: 1fr; display: grid; }
  .page-header { color: var(--paper); }
  .quick-nav-strip { padding: 16px; top: 10px; }
  .quick-nav-links .ghost-button,
  .quick-nav-links .cta-button { flex: 1 1 180px; }
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.brand-logo {
  width: 88px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(7, 12, 31, 0.2);
}

.panel-on-rail {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.session-card strong {
  font-size: 1.1rem;
}

.notice-card {
  border: 1px solid rgba(22, 118, 78, 0.14);
  background: linear-gradient(135deg, rgba(214, 176, 98, 0.16), rgba(255, 255, 255, 0.94));
}

.error-note {
  margin: 0;
  color: #9a365c;
  font-weight: 700;
}

.login-hero {
  align-items: start;
}

.auth-form,
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(100%, 360px);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field select,
.form-field input[type="file"] {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.checkbox-grid.narrow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-pill {
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(16, 26, 61, 0.05);
}

.check-pill input {
  margin-top: 2px;
}

.check-pill small {
  display: block;
  margin-top: 4px;
  color: rgba(24, 39, 84, 0.74);
}

.inline-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-links a,
.table-wrap a {
  color: var(--ink);
  font-weight: 700;
}

.locked-text {
  color: rgba(24, 39, 84, 0.72);
}

.static-card {
  pointer-events: none;
}

.top-align {
  align-items: start;
}

@media (max-width: 760px) {
  .form-grid.two-up,
  .checkbox-grid.narrow {
    grid-template-columns: 1fr;
  }

  .auth-form,
  .admin-form {
    min-width: 0;
  }
}

.session-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field textarea,
.form-field select[multiple] {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  resize: vertical;
}

.two-span {
  grid-column: span 2;
}

.form-field select[multiple] {
  min-height: 220px;
}

.table-wrap select,
.table-wrap input[type="text"],
.table-wrap input[type="date"] {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 760px) {
  .two-span {
    grid-column: auto;
  }
}

body.public-body {
  background:
    radial-gradient(circle at top left, rgba(239, 123, 167, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(214, 176, 98, 0.2), transparent 32%),
    linear-gradient(160deg, #0e1738 0%, #16224b 38%, #efe7d9 38%, #f7f3ec 100%);
}

.public-atmosphere {
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
}

.site-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: rise 0.55s ease-out;
}

.site-header,
.site-footer,
.site-hero,
.site-section,
.site-band,
.public-auth-card,
.service-card {
  backdrop-filter: blur(10px);
}

.site-header,
.site-footer,
.site-hero,
.site-band,
.service-card {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(10, 18, 43, 0.9);
  color: white;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.site-brand h1 {
  margin: 0;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.5rem;
}

.site-brand-logo {
  width: 92px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(7, 12, 31, 0.2);
}

.site-nav,
.footer-links,
.cta-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a,
.site-nav-cta {
  color: inherit;
  text-decoration: none;
}

.site-nav a,
.footer-links a {
  padding: 10px 12px;
  border-radius: 14px;
}

.site-nav a:hover,
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f0d79a);
  color: #39290a;
  font-weight: 700;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 22px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(10, 18, 43, 0.92), rgba(21, 33, 75, 0.86));
  color: white;
}

.portal-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.site-copy h2,
.hero-slim h2,
.site-band h3,
.service-card h3,
.public-auth-card h3 {
  margin: 8px 0 10px;
  font-family: "Palatino Linotype", Garamond, serif;
}

.site-copy h2,
.hero-slim h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;
}

.public-auth-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.public-inline-link {
  align-self: start;
  color: var(--ink);
  background: rgba(16, 26, 61, 0.08);
}

.site-section,
.hero-slim {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-slim {
  color: white;
  background: linear-gradient(160deg, rgba(10, 18, 43, 0.9), rgba(23, 35, 77, 0.88));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 22px;
  background: linear-gradient(160deg, rgba(214, 176, 98, 0.14), rgba(255, 255, 255, 0.94));
}

.site-logo-frame {
  min-height: 112px;
  margin: 12px 0 10px;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item p {
  margin: 6px 0 0;
  color: rgba(24, 39, 84, 0.82);
}

.timeline-pill {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f0d79a);
  color: #39290a;
  font-weight: 700;
}

.site-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(239, 123, 167, 0.18), rgba(255, 255, 255, 0.96));
}

.compact-services .service-card {
  background: rgba(255, 255, 255, 0.92);
}

.site-footer strong,
.site-footer span {
  display: block;
}

@media (max-width: 900px) {
  .site-hero,
  .portal-hero,
  .site-band,
  .site-header,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header,
  .site-footer,
  .site-band {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 14px;
  }

  .site-copy h2,
  .hero-slim h2 {
    font-size: 1.8rem;
  }

  .site-nav,
  .footer-links,
  .cta-cluster {
    gap: 8px;
  }
}

.premium-hero {
  background:
    radial-gradient(circle at top left, rgba(214, 176, 98, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(10, 18, 43, 0.94), rgba(21, 33, 75, 0.88));
}

.hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-strip-local {
  justify-content: start;
}

.trust-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 26, 61, 0.08);
  font-weight: 700;
}

.spotlight-card,
.preview-card {
  min-height: 100%;
}

.footer-rich {
  align-items: start;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-block.footer-links {
  align-items: end;
}

@media (max-width: 900px) {
  .footer-block.footer-links {
    align-items: start;
  }
}

.claim-form-grid textarea {
  min-height: 120px;
}

.claim-helper-results {
  max-height: 360px;
  overflow: auto;
}

.field-help {
  color: rgba(24, 39, 84, 0.72);
  line-height: 1.4;
}

.muted-copy {
  color: rgba(24, 39, 84, 0.8);
}

.claim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.claim-form-grid textarea {
  min-height: 140px;
}

@media (max-width: 760px) {
  .claim-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.install-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.install-card h3 {
  margin: 4px 0 8px;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.5rem;
}

.compact-install-card h3 {
  font-size: 1.35rem;
}

.install-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  max-width: 360px;
}

.text-preview {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 14px;
  border-radius: 16px;
  background: rgba(16, 26, 61, 0.06);
  border: 1px solid rgba(16, 26, 61, 0.08);
}

@media (max-width: 760px) {
  .install-card,
  .install-actions {
    align-items: stretch;
  }
}

body.client-body {
  background:
    radial-gradient(circle at 12% 12%, var(--client-accent-soft, rgba(239, 123, 167, 0.18)), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(214, 176, 98, 0.24), transparent 26%),
    radial-gradient(circle at 74% 72%, var(--client-primary-soft, rgba(214, 176, 98, 0.12)), transparent 32%),
    linear-gradient(142deg, #09142f 0%, #12204a 42%, #1d2a58 64%, #f2ebe2 100%);
}

.client-dashboard-body .page-header {
  align-items: center;
}

.client-landing-panel {
  background:
    radial-gradient(circle at top right, rgba(214, 176, 98, 0.2), transparent 28%),
    radial-gradient(circle at bottom left, var(--client-accent-soft, rgba(239, 123, 167, 0.18)), transparent 36%),
    linear-gradient(160deg, rgba(9, 20, 47, 0.96), rgba(24, 39, 84, 0.88));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-landing-panel p,
.client-landing-panel span,
.client-landing-panel .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.landing-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.landing-copy p {
  margin: 0;
  line-height: 1.6;
}

.landing-stat-grid,
.landing-link-grid {
  display: grid;
  gap: 16px;
}

.landing-stat-grid {
  width: min(440px, 100%);
  grid-template-columns: 1fr;
}

.landing-stat-card {
  min-height: 0;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-stat-card strong,
.landing-link-card h3 {
  color: white;
}

.landing-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.landing-link-card {
  min-height: 180px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(16, 26, 61, 0.92), rgba(32, 46, 100, 0.78));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-link-card span,
.landing-link-card .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 900px) {
  .client-landing-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-stat-grid {
    width: 100%;
  }
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 182px;
  gap: 10px;
  overflow: hidden;
}

.metric-card p,
.metric-card span,
.metric-card strong,
.list-row span,
.bar-row span,
.table-wrap td,
.table-wrap th,
.form-field input,
.form-field textarea,
.form-field select {
  line-height: 1.45;
}

.metric-card strong {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.metric-card p,
.metric-card span,
.snapshot-card p,
.snapshot-card span {
  margin: 0;
}

.list-row,
.bar-row {
  align-items: flex-start;
}

.row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.form-field input,
.form-field textarea,
.form-field select {
  min-height: 46px;
  vertical-align: middle;
}

.form-field textarea {
  padding-top: 12px;
}

.is-selected-row {
  border: 1px solid rgba(214, 176, 98, 0.28);
  border-radius: 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(214, 176, 98, 0.14), rgba(255, 255, 255, 0.88));
}


.rail-install-card {
  margin-top: 1rem;
}

.rail-install-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.05rem;
}

.compact-install-actions {
  align-items: stretch;
}

.compact-install-actions .ghost-button {
  width: 100%;
  text-align: center;
}


.metric-card {
  padding: 24px;
  align-items: flex-start;
}

.metric-card p {
  width: 100%;
  color: rgba(24, 39, 84, 0.82);
}

.metric-card strong {
  width: 100%;
  line-height: 1.05;
  color: var(--ink);
}

.metric-card span {
  width: 100%;
  color: rgba(24, 39, 84, 0.9);
}

.rail-install-card {
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rail-install-card .eyebrow,
.rail-install-card h3,
.rail-install-card .muted-copy,
.rail-install-card .field-help {
  color: rgba(255, 255, 255, 0.92);
}

.rail-install-card .muted-copy,
.rail-install-card .field-help {
  line-height: 1.45;
}

.rail-install-card .ghost-button,
.rail-install-card .ghost-button:visited {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.rail-install-card .ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
}


.page-actions .ghost-button,
.page-actions .ghost-button:visited {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-actions .ghost-button:hover {
  background: rgba(214, 176, 98, 0.22);
  color: #ffffff;
}

.page-actions .cta-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .rail {
    gap: 14px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .brand-lockup {
    gap: 12px;
    align-items: flex-start;
  }

  .brand-logo {
    width: 76px;
    border-radius: 14px;
  }

  .brand-lockup h1 {
    font-size: 2.1rem;
    line-height: 1.02;
  }

  .brand-tagline {
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .panel-on-rail,
  .practice-card {
    padding: 16px;
    border-radius: 20px;
  }

  .session-card strong {
    font-size: 1rem;
  }

  .logo-frame {
    min-height: 176px;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 20px;
  }

  .logo-frame.has-image {
    padding: 8px;
  }

  .logo-frame img {
    height: 156px;
  }

  .practice-card h2 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .practice-card p:last-child {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .subnav,
  .client-stack {
    gap: 8px;
  }

  .subnav a,
  .client-chip {
    min-height: 44px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 14px;
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .rail {
    padding: 18px 14px;
    gap: 12px;
  }

  .brand-logo {
    width: 68px;
  }

  .brand-lockup h1 {
    font-size: 1.9rem;
  }

  .session-links .ghost-link,
  .subnav a,
  .client-chip {
    width: 100%;
  }

  .practice-card {
    padding: 14px;
  }

  .logo-frame {
    min-height: 150px;
    margin-bottom: 12px;
  }

  .logo-frame img {
    height: 132px;
  }

  .practice-card h2 {
    font-size: 1.3rem;
  }

  .practice-card p:last-child {
    font-size: 0.88rem;
  }
}



@media (max-width: 900px) {
  .page-header {
    align-items: flex-start;
    gap: 14px;
  }

  .page-actions,
  .inline-links,
  .inline-form {
    width: 100%;
  }

  .inline-links,
  .inline-form {
    gap: 8px;
  }

  .inline-links .ghost-button,
  .inline-links .cta-button,
  .inline-form .ghost-button,
  .inline-form .cta-button {
    flex: 1 1 180px;
  }

  .hero-panel,
  .panel-card {
    padding: 20px;
  }

  .hero-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel h3 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .landing-stat-grid,
  .landing-link-grid,
  .metric-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-card,
  .client-card {
    padding: 16px;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    min-width: 640px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 10px 9px;
    font-size: 0.9rem;
  }

  .badge-cloud {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .main-panel {
    gap: 16px;
  }

  .page-header {
    gap: 12px;
  }

  .page-header h2 {
    font-size: 1.95rem;
    line-height: 1.04;
  }

  .hero-panel,
  .panel-card,
  .metric-card {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-panel h3 {
    font-size: 1.5rem;
  }

  .inline-links .ghost-button,
  .inline-links .cta-button,
  .inline-form .ghost-button,
  .inline-form .cta-button,
  .inline-form input,
  .inline-form select {
    width: 100%;
    min-width: 0;
  }

  .landing-copy p,
  .client-card span,
  .snapshot-card span,
  .metric-card span,
  .list-row span,
  .bar-row span {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .metric-card strong {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .snapshot-card strong {
    font-size: clamp(1.55rem, 7.5vw, 2.1rem);
  }

  .list-row,
  .bar-row,
  .card-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .row-meta {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .status-pill {
    min-height: 30px;
  }

  .table-wrap table {
    min-width: 560px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 9px 8px;
    font-size: 0.86rem;
  }

  .marketing-chart-row {
    grid-template-columns: 1fr auto;
  }

  .marketing-chart-row .marketing-bar-track {
    grid-column: 1 / -1;
  }

  .claim-feed {
    max-height: none;
  }
}


.claim-form-panel,
.claim-support-panel,
.mobile-claim-history,
.tracker-panel {
  min-width: 0;
}

.tracker-mobile-list {
  display: none;
}

.tracker-mobile-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(16, 26, 61, 0.04), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(16, 26, 61, 0.08);
}

@media (max-width: 900px) {
  .claim-form-layout {
    gap: 14px;
  }

  .claim-form-grid {
    grid-template-columns: 1fr;
  }

  .claim-form-grid .two-span {
    grid-column: auto;
  }

  .claim-form-grid textarea {
    min-height: 160px;
  }

  .mobile-inline-form {
    align-items: stretch;
  }

  .mobile-inline-form input,
  .mobile-inline-form select,
  .mobile-inline-form .ghost-button,
  .mobile-inline-form .cta-button {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .claim-feed-row {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .claim-form-panel,
  .claim-support-panel,
  .mobile-claim-history,
  .tracker-panel {
    padding: 16px;
  }

  .claim-form-grid {
    gap: 10px;
  }

  .claim-form-grid textarea {
    min-height: 180px;
  }

  .mobile-claim-actions {
    gap: 10px;
    align-items: stretch;
  }

  .mobile-claim-actions .cta-button {
    width: 100%;
  }

  .mobile-claim-actions .field-help {
    display: block;
  }

  .claim-helper-results {
    max-height: none;
  }

  .claim-feed {
    gap: 8px;
  }

  .claim-feed-row {
    padding: 14px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .claim-feed-row .status-pill {
    align-self: flex-start;
  }

  .tracker-table-wrap {
    display: none;
  }

  .tracker-mobile-list {
    display: flex;
    gap: 10px;
  }

  .tracker-mobile-card {
    gap: 10px;
  }

  .tracker-mobile-card .row-meta {
    align-items: flex-start;
    text-align: left;
  }
}


.queue-work-card {
  gap: 1rem;
}

.queue-status-line {
  align-items: flex-end;
  gap: 0.65rem;
}

.queue-action-form {
  align-items: end;
}

.queue-action-buttons {
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .queue-status-line {
    align-items: flex-start;
  }

  .queue-action-form {
    grid-template-columns: 1fr;
  }
}


.form-field textarea {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  resize: vertical;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.timeline-card {
  align-self: start;
}

.compact-list {
  padding-left: 16px;
  margin: 8px 0 0;
}

.print-body {
  background: #f5f1e8;
  color: var(--ink);
  padding: 24px;
}

.print-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.print-header,
.print-address {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.print-header h1 {
  margin: 8px 0;
  font-family: "Palatino Linotype", Garamond, serif;
}

.print-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.print-content {
  margin: 28px 0;
  line-height: 1.65;
  white-space: normal;
}

.print-footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

@media print {
  .print-body {
    background: white;
    padding: 0;
  }

  .print-sheet {
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    max-width: none;
    padding: 0;
  }
}


.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.foundation-showcase {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  gap: 28px;
  background:
    radial-gradient(circle at 15% 18%, rgba(72, 180, 199, 0.18), transparent 27%),
    radial-gradient(circle at 86% 14%, rgba(216, 176, 98, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(8, 19, 53, 0.98), rgba(18, 38, 92, 0.92));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.foundation-copy {
  display: flex;
  flex: 1 1 380px;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.foundation-copy p,
.foundation-copy .eyebrow,
.foundation-portrait-meta p,
.foundation-float-card p {
  margin: 0;
}

.foundation-tagline {
  max-width: 520px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.foundation-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.foundation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.84rem;
  font-weight: 700;
}

.foundation-visual {
  position: relative;
  flex: 1 1 480px;
  min-width: 0;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 22px 24px;
  align-items: start;
}

.foundation-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}

.foundation-orb-one {
  inset: 12px auto auto 12px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91, 196, 222, 0.28), transparent 70%);
}

.foundation-orb-two {
  inset: auto 12px 18px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(214, 176, 98, 0.28), transparent 68%);
}

.foundation-portrait-card {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  align-self: stretch;
  width: min(360px, 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(6, 11, 28, 0.28);
}

.foundation-portrait-frame {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.foundation-portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.foundation-portrait-frame.logo-mode img {
  object-fit: contain;
  padding: 24px;
}

.foundation-portrait-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 24, 64, 0.94), rgba(16, 36, 86, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  text-shadow: none;
}

.foundation-portrait-meta .eyebrow {
  color: rgba(214, 232, 255, 0.9);
}

.foundation-portrait-meta strong {
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.26rem;
}

.foundation-float-card {
  position: relative;
  z-index: 2;
  max-width: 290px;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(6, 11, 28, 0.24);
}

.foundation-float-card strong {
  display: block;
  margin: 8px 0 10px;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.3rem;
  line-height: 1.14;
}

.foundation-float-card-quote {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  background: linear-gradient(155deg, rgba(11, 90, 106, 0.98), rgba(9, 54, 82, 0.96));
  border: 1px solid rgba(165, 236, 247, 0.24);
  color: #f8fcff;
}

.foundation-float-card-quote p,
.foundation-float-card-quote .eyebrow,
.foundation-float-card-quote strong {
  color: #f8fcff;
}

.foundation-float-card-quote strong {
  font-size: 1.9rem;
  line-height: 1.08;
}

.foundation-float-card-priority {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  background: linear-gradient(165deg, rgba(255, 247, 228, 0.98), rgba(248, 235, 197, 0.97));
  border: 1px solid rgba(163, 121, 34, 0.18);
  color: #102156;
}

.foundation-float-card-priority p,
.foundation-float-card-priority .eyebrow,
.foundation-float-card-priority strong {
  color: #102156;
}

.foundation-float-card-priority strong {
  font-size: 1.6rem;
}

.foundation-float-card-top,
.foundation-float-card-bottom {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.foundation-score-grid .metric-card,
.foundation-panel-soft,
.foundation-service-card,
.foundation-timeline-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(91, 196, 222, 0.12), transparent 34%);
}

.foundation-service-card {
  border: 1px solid rgba(16, 26, 61, 0.08);
}

.foundation-principles-card {
  background:
    radial-gradient(circle at top left, rgba(200, 159, 71, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.94));
}

.foundation-timeline-card {
  min-height: 100%;
}

@media (max-width: 1120px) {
  .foundation-showcase {
    flex-direction: column;
  }

  .foundation-visual {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .foundation-portrait-card,
  .foundation-float-card-quote,
  .foundation-float-card-priority {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: auto;
  }
}

@media (max-width: 640px) {
  .foundation-portrait-card {
    width: 100%;
  }

  .foundation-float-card {
    max-width: none;
    padding: 16px 18px;
  }

  .foundation-visual {
    gap: 14px;
    align-items: stretch;
  }

  .foundation-float-card strong {
    font-size: 1.05rem;
  }
}


.foundation-founder-card h3 {
  margin: 0 0 12px;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.5rem;
}

.foundation-founder-card p {
  margin: 0 0 12px;
  line-height: 1.65;
}


.enhanced-print-sheet {
  border: 1px solid rgba(16, 26, 61, 0.08);
}

.enhanced-print-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.print-brand-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.print-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.print-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(16, 26, 61, 0.04);
  padding: 8px;
}

.print-header-line,
.print-footer-line {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(24, 39, 84, 0.82);
}

.enhanced-print-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.print-signature {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 6px 0 2px;
  object-fit: contain;
}

@media print {
  .enhanced-print-sheet {
    border: 0;
  }
}



.align-end {
  justify-content: end;
}

.full-span-panel {
  grid-column: 1 / -1;
}

.patient-group-stack {
  gap: 18px;
}

.patient-group-card .detail-grid {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .full-span-panel {
    grid-column: auto;
  }
}


.site-hero .lede,
.site-hero .kicker,
.site-hero .field-help,
.hero-slim .lede,
.hero-slim .kicker {
  color: rgba(255, 255, 255, 0.88);
}

.site-hero .ghost-button.hero-ghost,
.site-hero .ghost-button.hero-ghost:visited {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-hero .ghost-button.hero-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.enhanced-print-header {
  align-items: flex-start;
}

.print-brand-copy {
  max-width: 520px;
}

.print-logo {
  width: 96px;
  height: 96px;
  background: #ffffff;
  border: 1px solid rgba(16, 26, 61, 0.08);
}

.print-brand-copy .eyebrow,
.print-meta span {
  color: rgba(24, 39, 84, 0.82);
}

.print-header-line,
.print-footer-line {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(24, 39, 84, 0.94);
}

.print-footer-line {
  margin-top: 2px;
}

.print-signature {
  width: 220px;
}

.public-auth-card .lede,
.public-auth-card .field-help {
  color: rgba(17, 31, 74, 0.78);
}

.site-hero .site-copy .lede,
.site-hero .site-copy .kicker,
.site-hero .site-copy .field-help {
  color: rgba(255, 255, 255, 0.9);
}

.print-logo {
  width: 128px;
  height: 128px;
  border-radius: 22px;
}

.print-signature {
  width: 260px;
}


.print-letterhead-image {
  width: 100%;
  max-height: 116px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.print-letterhead-image.footer-image {
  margin: 10px 0 2px;
}

.public-auth-card,
.public-auth-card .lede,
.public-auth-card .eyebrow,
.public-auth-card label span,
.public-auth-card .ghost-link,
.public-auth-card .public-inline-link {
  color: #152a63;
}

.public-auth-card input::placeholder {
  color: rgba(21, 42, 99, 0.52);
}

.public-auth-card {
  box-shadow: 0 18px 40px rgba(16, 27, 70, 0.14);
}


.portal-strategy-showcase {
  align-items: stretch;
}

.strategy-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strategy-copy .lede {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
}

.strategy-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.strategy-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 700;
  line-height: 1.35;
}

.strategy-visual {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.strategy-portrait-card,
.strategy-visual-panel,
.persona-card,
.brief-card {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.strategy-portrait-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.strategy-portrait-frame {
  min-height: 320px;
  background: linear-gradient(180deg, rgba(200, 159, 71, 0.25), rgba(12, 22, 54, 0.08));
}

.strategy-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strategy-portrait-meta {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 238, 247, 0.94));
}

.strategy-portrait-meta strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 1.15rem;
}

.strategy-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.strategy-visual-panel {
  padding: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(233, 238, 247, 0.9));
  color: var(--ink);
}

.strategy-visual-panel strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.05rem;
}

.strategy-visual-panel p,
.persona-card span,
.brief-card span {
  color: rgba(24, 39, 84, 0.82);
}

.persona-grid,
.brief-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.persona-card,
.brief-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-card p,
.brief-card p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(24, 39, 84, 0.55);
}

.persona-card h3,
.brief-card h3 {
  margin: 0;
}

.strategy-ordered-list {
  margin: 0;
  padding-left: 1.1rem;
}

.strategy-ordered-list li + li {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .strategy-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .strategy-panel-grid {
    grid-template-columns: 1fr;
  }

  .strategy-portrait-frame {
    min-height: 260px;
  }
}


.foundation-editorial-hero {
  align-items: stretch;
  background: linear-gradient(135deg, rgba(248,245,238,0.98), rgba(224,232,239,0.94));
  color: #17315d;
}
.foundation-editorial-copy {
  display: grid;
  gap: 1rem;
}
.foundation-editorial-portrait {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.foundation-tab-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.foundation-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(18, 33, 76, 0.08);
  color: #17315d;
  text-decoration: none;
  font-weight: 700;
}
.foundation-tab.active {
  background: #17315d;
  color: #fff;
}
.editorial-frame {
  min-height: 420px;
}
.editorial-meta {
  background: rgba(14, 29, 70, 0.92);
  color: #fff;
  border-radius: 24px;
  padding: 1.1rem 1.25rem;
}
.booking-hero {
  align-items: start;
}
.booking-hero-card {
  border-radius: 24px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(199,162,87,0.2), rgba(18,33,76,0.08));
  color: #17315d;
}
.booking-notice-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,240,232,0.96));
}
.booking-contact-card h3 {
  margin: 0;
}
.booking-calendar-frame iframe,
.booking-map-frame iframe {
  width: 100%;
  border: 0;
  border-radius: 18px;
}
.booking-calendar-frame iframe {
  min-height: 520px;
}
.booking-map-frame iframe {
  min-height: 220px;
}
.booking-location-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.booking-acknowledgement {
  width: 100%;
}
@media (max-width: 900px) {
  .foundation-tab-strip {
    gap: 0.5rem;
  }
  .foundation-tab {
    width: 100%;
    justify-content: center;
  }
}

.booking-feed-note {
  margin-top: 0.85rem;
  color: #17315d;
  font-size: 0.96rem;
}
.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.booking-slot-card {
  border-radius: 22px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,251,0.98));
  border: 1px solid rgba(18,33,86,0.1);
}
.booking-slot-card p {
  margin: 0 0 0.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #4f6189;
}
.booking-slot-card strong {
  display: block;
  margin-bottom: 0.85rem;
}
.booking-slot-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.booking-slot-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(199,162,87,0.18);
  color: #17315d;
  font-weight: 600;
  font-size: 0.9rem;
}

.foundation-editorial-hero .eyebrow,
.foundation-editorial-hero .foundation-tagline,
.foundation-editorial-hero p {
  color: #24406b;
}
.foundation-editorial-hero .foundation-chip {
  background: rgba(23, 49, 93, 0.08);
  border: 1px solid rgba(23, 49, 93, 0.12);
  color: #17315d;
}
.foundation-public-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.foundation-hero-link,
.foundation-public-card .cta-button {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .foundation-public-card {
    flex-direction: column;
    align-items: stretch;
  }
}


.raised-query-row {
  border: 1px solid rgba(16, 26, 61, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 252, 0.92));
}

.raised-query-row.overdue {
  border-color: rgba(184, 59, 94, 0.45);
  background: linear-gradient(160deg, rgba(255, 244, 246, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: 0 12px 26px rgba(184, 59, 94, 0.12);
}

.raised-query-row.due-today {
  border-color: rgba(208, 155, 56, 0.45);
  background: linear-gradient(160deg, rgba(255, 249, 235, 0.96), rgba(255, 255, 255, 0.96));
}

.raised-query-meta {
  align-items: flex-end;
  gap: 8px;
}

.query-note-history {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.query-note-history-form {
  padding: 12px;
  border: 1px solid rgba(16, 26, 61, 0.08);
  border-radius: 14px;
  background: rgba(16, 26, 61, 0.035);
}

.query-note-entry {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-left: 3px solid var(--client-primary, #c7a257);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.query-note-stamp {
  color: #5f6f98;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.owner-pill,
.due-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.owner-practice {
  background: rgba(24, 113, 84, 0.12);
  color: #187154;
}

.owner-jimbale {
  background: rgba(38, 76, 167, 0.12);
  color: #264ca7;
}

.owner-doctor {
  background: rgba(112, 63, 159, 0.12);
  color: #703f9f;
}

.owner-scheme {
  background: rgba(184, 59, 94, 0.12);
  color: #b83b5e;
}

.owner-neutral {
  background: rgba(16, 26, 61, 0.08);
  color: #30406d;
}

.due-pill {
  background: rgba(16, 26, 61, 0.06);
  color: #30406d;
}

.due-pill.today {
  background: rgba(208, 155, 56, 0.16);
  color: #9c6a11;
}

.due-pill.overdue {
  background: rgba(184, 59, 94, 0.16);
  color: #a52f50;
}

.due-note {
  text-align: right;
}

.notification-bell {
  position: relative;
  gap: 0.45rem;
}

.notification-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  min-height: 1.55rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--client-accent, #b83b5e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.notification-row.unread {
  border-color: rgba(184, 59, 94, 0.35);
  background: linear-gradient(160deg, rgba(255, 247, 249, 0.98), rgba(255, 255, 255, 0.98));
}

.form-section-details {
  padding: 12px;
  border: 1px solid rgba(16, 26, 61, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.form-section-details summary {
  margin-bottom: 10px;
}

@media print {
  .no-print,
  .site-nav,
  .sidebar,
  .portal-nav,
  .notice-card {
    display: none !important;
  }

  .raised-query-list-card,
  .raised-query-row {
    box-shadow: none !important;
    break-inside: avoid;
  }

  .raised-query-meta {
    align-items: flex-start;
    text-align: left;
  }
}


.inline-edit-details {
  margin-top: 8px;
  border: 1px solid rgba(16, 26, 61, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.inline-edit-details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #203665;
}

.inline-edit-details summary::-webkit-details-marker {
  display: none;
}

.inline-edit-details[open] summary {
  margin-bottom: 14px;
}

.inline-edit-grid {
  margin-top: 12px;
}



/* Portal tidy and documents workspace refresh */
body.client-body {
  background:
    radial-gradient(circle at 12% 12%, var(--client-accent-soft, rgba(239, 123, 167, 0.18)), transparent 24%),
    radial-gradient(circle at 82% 14%, var(--client-primary-soft, rgba(214, 176, 98, 0.24)), transparent 26%),
    radial-gradient(circle at 74% 72%, var(--client-accent-soft, rgba(214, 176, 98, 0.12)), transparent 32%),
    linear-gradient(142deg, #09142f 0%, #12204a 40%, #1a2755 60%, #f4efe8 100%);
}

body.client-body .quick-nav-strip {
  border-color: var(--client-primary-soft, rgba(214, 176, 98, 0.28));
  box-shadow: 0 14px 30px rgba(8, 17, 46, 0.12);
}

body.client-body .panel-card,
body.client-body .metric-card,
body.client-body .service-card,
body.client-body .snapshot-card {
  border: 1px solid var(--client-primary-soft, rgba(214, 176, 98, 0.22));
}

body.client-body .client-landing-panel,
body.client-body .portal-strategy-hero {
  background:
    radial-gradient(circle at top right, var(--client-primary-soft, rgba(214, 176, 98, 0.2)), transparent 28%),
    radial-gradient(circle at bottom left, var(--client-accent-soft, rgba(239, 123, 167, 0.18)), transparent 36%),
    linear-gradient(160deg, rgba(9, 20, 47, 0.96), rgba(24, 39, 84, 0.88));
}

.document-library-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.document-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 26, 61, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.document-tab:hover {
  transform: translateY(-1px);
}

.document-tab.active {
  border-color: var(--client-primary-soft, rgba(214, 176, 98, 0.34));
  background: linear-gradient(135deg, var(--client-primary-soft, rgba(214, 176, 98, 0.18)), rgba(255, 255, 255, 0.96));
}

.document-tab-label {
  font-weight: 700;
}

.document-workspace-grid,
.portal-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.document-workspace-card,
.portal-shortcut-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), var(--client-primary-soft, rgba(214, 176, 98, 0.12)));
  border: 1px solid var(--client-primary-soft, rgba(214, 176, 98, 0.22));
  box-shadow: var(--shadow);
}

.document-library-list .stack-list,
.portal-shortcut-card .stack-list {
  margin-top: 14px;
}

.portal-shortcut-card h3,
.portal-collapsible-copy strong {
  margin: 4px 0 8px;
  font-family: "Palatino Linotype", Garamond, serif;
  font-size: 1.35rem;
}

.portal-shortcut-card > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.portal-shortcut-card .list-row,
.document-library-list .list-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.portal-shortcut-card .list-row:last-child,
.document-library-list .list-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.portal-strategy-hero {
  align-items: start;
}

.portal-hero-panel-grid {
  align-self: stretch;
}

.portal-collapsible {
  padding: 0;
  overflow: hidden;
}

.portal-collapsible-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
}

.portal-collapsible-summary::-webkit-details-marker {
  display: none;
}

.portal-collapsible[open] .portal-collapsible-summary {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--client-primary-soft, rgba(214, 176, 98, 0.12)), rgba(255, 255, 255, 0.96));
}

.portal-collapsible-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portal-collapsible-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 24px 24px;
}

.portal-collapsible-body .panel-card {
  box-shadow: none;
}

@media (max-width: 900px) {
  .document-workspace-grid,
  .portal-shortcut-grid {
    grid-template-columns: 1fr;
  }

  .portal-collapsible-summary {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Client color enforcement */
body.client-body .cta-button,
body.client-body .page-actions .cta-button,
body.client-body .quick-nav-links .cta-button {
  background: linear-gradient(135deg, var(--client-primary), var(--client-accent));
  color: #ffffff;
}

body.client-body .ghost-button,
body.client-body .page-actions .ghost-button,
body.client-body .quick-nav-links .ghost-button {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border: 1px solid var(--client-primary-soft, rgba(214, 176, 98, 0.26));
}

body.client-body .ghost-button:hover,
body.client-body .page-actions .ghost-button:hover,
body.client-body .quick-nav-links .ghost-button:hover {
  background: linear-gradient(135deg, var(--client-primary-soft, rgba(214, 176, 98, 0.18)), rgba(255, 255, 255, 0.98));
}

body.client-body .quick-nav-anchor,
body.client-body .quick-nav-anchor:visited {
  background: linear-gradient(135deg, var(--client-accent), var(--client-primary));
  color: #ffffff;
  border-color: transparent;
}

body.client-body .quick-nav-anchor:hover {
  background: linear-gradient(135deg, var(--client-primary), var(--client-accent));
}

body.client-body .client-chip.active,
body.client-body .claim-feed-row.active,
body.client-body .is-selected-row {
  background: linear-gradient(135deg, var(--client-primary-soft, rgba(214, 176, 98, 0.18)), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--client-primary-soft, rgba(214, 176, 98, 0.34));
}

body.client-body .reference-hub,
body.client-body .notice-card {
  border-color: var(--client-primary-soft, rgba(214, 176, 98, 0.34));
  background: linear-gradient(145deg, var(--client-primary-soft, rgba(214, 176, 98, 0.18)), rgba(255, 255, 255, 0.95));
}

body.client-body .service-card,
body.client-body .client-card,
body.client-body .landing-link-card,
body.client-body .snapshot-card,
body.client-body .document-workspace-card,
body.client-body .portal-shortcut-card {
  border-color: var(--client-primary-soft, rgba(214, 176, 98, 0.22));
}

body.client-body .landing-link-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, var(--client-primary), rgba(16, 26, 61, 0.92) 72%);
}

body.client-body .status-pill.neutral {
  background: var(--client-primary-soft, rgba(214, 176, 98, 0.2));
  color: var(--ink);
  border: 1px solid var(--client-primary-soft, rgba(214, 176, 98, 0.34));
}

.remittance-workbench {
  display: grid;
  gap: 16px;
}

.remittance-search-grid {
  align-items: end;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-chip,
.compact-button {
  border: 1px solid rgba(16, 26, 61, 0.14);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.active {
  border-color: rgba(67, 171, 123, 0.48);
  background: rgba(67, 171, 123, 0.14);
  color: #16764e;
}

.remittance-list {
  display: grid;
  gap: 12px;
}

.remittance-card {
  border: 1px solid rgba(16, 26, 61, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 26, 61, 0.06);
  overflow: hidden;
}

.remittance-card[hidden],
[data-patient-payment-row][hidden] {
  display: none;
}

.remittance-card.status-live {
  opacity: 0.84;
}

.remittance-card.status-warning {
  border-color: rgba(214, 176, 98, 0.5);
}

.remittance-card.status-danger {
  border-color: rgba(190, 72, 72, 0.42);
}

.remittance-summary {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

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

.remittance-toggle {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.16s ease;
}

.remittance-card[open] .remittance-toggle {
  transform: rotate(45deg);
}

.remittance-title-block {
  display: grid;
  gap: 2px;
}

.remittance-title-block span {
  color: rgba(24, 39, 84, 0.72);
  font-size: 0.9rem;
}

.remittance-summary-grid,
.remittance-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.remittance-summary-grid span,
.remittance-facts span {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(16, 26, 61, 0.04);
  color: rgba(24, 39, 84, 0.74);
  font-size: 0.86rem;
}

.remittance-summary-grid b,
.remittance-facts b {
  color: var(--ink);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.remittance-detail {
  display: grid;
  gap: 14px;
  padding: 0 16px 18px;
}

.status-pill.danger {
  background: rgba(190, 72, 72, 0.12);
  color: #983434;
  border: 1px solid rgba(190, 72, 72, 0.28);
}

.marketing-tabs {
  padding: 16px;
}

.marketing-chart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.marketing-chart-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(140px, 2fr) auto;
  gap: 12px;
  align-items: center;
}

.marketing-chart-row span,
.marketing-chart-row strong {
  min-width: 0;
}

.marketing-bar-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16, 26, 61, 0.08);
}

.marketing-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), #f0d79a);
}

.marketing-bulk-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marketing-bulk-controls {
  align-items: end;
}

.marketing-restricted-row {
  background: rgba(190, 72, 72, 0.05);
}

.compact-actions .ghost-button,
.compact-actions .cta-button {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 10px;
}

.commission-rule-note-row td {
  padding-top: 0;
  background: rgba(16, 26, 61, 0.025);
}

.commission-rule-notes {
  border: 1px solid rgba(16, 26, 61, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.66);
}

.commission-rule-notes summary {
  cursor: pointer;
  font-weight: 800;
}

.commission-rule-notes p {
  margin: 8px 0 0;
  line-height: 1.5;
  color: rgba(24, 39, 84, 0.9);
}

.warning-copy {
  color: #8a5b10;
  font-weight: 700;
}

.search-hit {
  background: rgba(214, 176, 98, 0.22) !important;
  outline: 2px solid rgba(214, 176, 98, 0.32);
  outline-offset: -2px;
}

.raw-text-toggle summary {
  cursor: pointer;
  font-weight: 700;
}

.patient-payment-search {
  display: grid;
  gap: 12px;
}

@media (max-width: 760px) {
  .remittance-summary {
    grid-template-columns: auto 1fr;
  }

  .remittance-summary > .status-pill {
    justify-self: start;
  }
}

body.client-body .subnav a:hover,
body.client-body .client-chip:hover,
body.client-body .claim-feed-row:hover,
body.client-body .client-card:hover {
  box-shadow: 0 10px 24px var(--client-accent-soft, rgba(239, 123, 167, 0.18));
}
