/* Auram Prime Property Intelligence Chat — v1.5.3
   Complete website-only visual system. No APDI selectors, assets or dependencies. */

.apic-root,
.apic-root *{box-sizing:border-box}

.apic-root{
  --apic-ivory:#fffaf1;
  --apic-paper:#fffdf8;
  --apic-cream:#f8f0e4;
  --apic-plum:#4d3577;
  --apic-plum-deep:#2f2148;
  --apic-copper:#b8792e;
  --apic-copper-soft:#d99d46;
  --apic-ink:#24172f;
  --apic-copy:#5f5369;
  --apic-muted:#7d7183;
  --apic-line:#decdb3;
  --apic-soft-line:rgba(222,205,179,.68);
  --apic-shadow:0 28px 74px rgba(36,23,47,.22);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

#apic-root.apic-root button.apic-launcher{
  -webkit-appearance:none;
  appearance:none;
  position:fixed;
  right:calc(20px + env(safe-area-inset-right, 0px));
  bottom:calc(20px + env(safe-area-inset-bottom, 0px));
  z-index:99990;
  display:inline-flex;
  min-height:52px;
  align-items:center;
  gap:10px;
  padding:0 19px 0 12px;
  border:1px solid rgba(184,121,46,.55);
  border-radius:999px;
  background:var(--apic-plum);
  color:var(--apic-ivory);
  box-shadow:0 17px 42px rgba(47,33,72,.28);
  cursor:pointer;
  font-size:14px;
  font-weight:850;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
#apic-root.apic-root button.apic-launcher:hover,
#apic-root.apic-root button.apic-launcher:focus,
#apic-root.apic-root button.apic-launcher:focus-visible,
#apic-root.apic-root button.apic-launcher:active{
  transform:translateY(-2px);
  border-color:var(--apic-copper-soft);
  outline:none;
  box-shadow:0 22px 52px rgba(47,33,72,.32);
}
.apic-launcher-icon{
  display:grid;
  width:31px;
  height:31px;
  place-items:center;
  border-radius:999px;
  background:var(--apic-copper-soft);
  color:var(--apic-plum-deep);
  font-size:13px;
}
#apic-root.apic-root.is-open button.apic-launcher{display:none}

.apic-panel{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:99991;
  display:none;
  width:clamp(420px,32vw,620px);
  max-width:calc(100vw - 40px);
  height:min(720px,calc(100dvh - 40px));
  overflow:hidden;
  border:1px solid rgba(184,121,46,.55);
  border-radius:25px;
  background:var(--apic-ivory);
  color:var(--apic-ink);
  box-shadow:var(--apic-shadow);
}
body.admin-bar .apic-panel{
  height:min(690px,calc(100dvh - 72px));
}
.apic-root.is-open .apic-panel{
  display:flex;
  flex-direction:column;
}

.apic-head{
  display:flex;
  flex:0 0 auto;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:16px 17px 14px;
  border-bottom:3px solid var(--apic-copper);
  background:var(--apic-plum);
  color:var(--apic-ivory);
}
.apic-head-copy{min-width:0}
.apic-title{
  margin:0;
  color:var(--apic-ivory);
  font-family:"Source Serif 4",Georgia,"Times New Roman",serif;
  font-size:25px;
  font-weight:600;
  line-height:1.05;
  letter-spacing:-.025em;
}
.apic-subtitle{
  margin:6px 0 0;
  color:#eee5f3;
  font-size:11px;
  font-weight:750;
  line-height:1.35;
}
.apic-head-actions{display:flex;gap:8px;align-items:center}
#apic-root.apic-root button.apic-close,
#apic-root.apic-root button.apic-reset{
  -webkit-appearance:none;
  appearance:none;
  display:grid;
  flex:0 0 auto;
  width:36px;
  height:36px;
  min-width:36px;
  min-height:36px;
  padding:0;
  place-items:center;
  border:1px solid rgba(255,250,241,.32);
  border-radius:999px;
  background:transparent;
  color:var(--apic-ivory);
  cursor:pointer;
  font:inherit;
  line-height:0;
}
#apic-root.apic-root .apic-icon{
  display:block;
  width:20px;
  height:20px;
  line-height:0;
  pointer-events:none;
}
#apic-root.apic-root .apic-icon svg{
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
  fill:none;
  stroke:currentColor;
  stroke-width:2.25;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#apic-root.apic-root .apic-icon-reset{width:21px;height:21px}
#apic-root.apic-root .apic-icon-close{width:18px;height:18px}
#apic-root.apic-root button.apic-close:hover,
#apic-root.apic-root button.apic-close:focus,
#apic-root.apic-root button.apic-close:focus-visible,
#apic-root.apic-root button.apic-close:active,
#apic-root.apic-root button.apic-reset:hover,
#apic-root.apic-root button.apic-reset:focus,
#apic-root.apic-root button.apic-reset:focus-visible,
#apic-root.apic-root button.apic-reset:active{
  border-color:var(--apic-copper-soft);
  background:rgba(255,250,241,.10);
  outline:none;
}

.apic-messages{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding:16px;
  background:var(--apic-paper);
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(77,53,119,.34) transparent;
}
.apic-msg{display:flex;margin:0 0 13px}
.apic-msg:last-child{margin-bottom:0}
.apic-msg-user{justify-content:flex-end}
.apic-bubble{
  max-width:94%;
  padding:13px 14px;
  border:1px solid var(--apic-line);
  border-radius:17px;
  background:var(--apic-paper);
  color:var(--apic-copy);
  box-shadow:0 7px 18px rgba(36,23,47,.035);
  font-size:13px;
  line-height:1.55;
  white-space:pre-wrap;
}
.apic-msg-bot .apic-bubble{border-top-left-radius:6px}
.apic-msg-user .apic-bubble{
  max-width:88%;
  border-top-right-radius:6px;
  border-color:rgba(184,121,46,.38);
  background:#f7ead7;
  color:var(--apic-ink);
  font-weight:650;
}
.apic-msg-decision{display:block}
.apic-bubble-decision{
  max-width:100%;
  padding:0;
  overflow:hidden;
  border-radius:19px;
  white-space:normal;
}

.apic-advice{padding:17px}
.apic-eyebrow{
  margin:0 0 8px;
  color:var(--apic-copper);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.apic-advice h3{
  margin:0;
  color:var(--apic-ink);
  font-family:"Source Serif 4",Georgia,"Times New Roman",serif;
  font-size:21px;
  font-weight:600;
  line-height:1.18;
  letter-spacing:-.018em;
}
.apic-direct{
  margin:11px 0 0;
  color:var(--apic-copy);
  font-size:13px;
  line-height:1.62;
}

.apic-known{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
  margin-top:13px;
}
.apic-known>div{
  padding:9px 10px;
  border:1px solid var(--apic-soft-line);
  border-radius:12px;
  background:var(--apic-cream);
}
.apic-known small,
.apic-next small,
.apic-direction small{
  display:block;
  margin-bottom:3px;
  color:var(--apic-muted);
  font-size:9px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.apic-known strong{
  display:block;
  color:var(--apic-ink);
  font-size:11px;
  line-height:1.25;
}

.apic-compare{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin-top:14px;
}
.apic-compare-card{
  padding:12px;
  border:1px solid var(--apic-line);
  border-radius:14px;
  background:#fffaf2;
}
.apic-compare-card h4{
  margin:0 0 9px;
  color:var(--apic-plum-deep);
  font-family:"Source Serif 4",Georgia,serif;
  font-size:17px;
  font-weight:650;
}
.apic-compare-card p{
  margin:0 0 9px;
  color:var(--apic-copy);
  font-size:11px;
  line-height:1.45;
}
.apic-compare-card p:last-child{margin-bottom:0}
.apic-compare-card b{
  display:block;
  margin-bottom:2px;
  color:var(--apic-ink);
  font-size:9px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.apic-steps{
  margin:14px 0 0;
  padding:0 0 0 21px;
  color:var(--apic-copy);
  font-size:12px;
  line-height:1.5;
}
.apic-steps li{padding:0 0 6px 3px}
.apic-steps li:last-child{padding-bottom:0}

.apic-section-label{
  margin:0 0 9px;
  color:var(--apic-copper);
  font-size:9px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.apic-costs,
.apic-missing,
.apic-coverage{
  margin-top:14px;
  padding-top:13px;
  border-top:1px solid var(--apic-soft-line);
}
.apic-cost-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
}
.apic-cost-card{
  padding:12px;
  border:1px solid var(--apic-line);
  border-radius:14px;
  background:var(--apic-paper);
}
.apic-cost-card h4{
  margin:0 0 8px;
  color:var(--apic-plum-deep);
  font-family:"Source Serif 4",Georgia,serif;
  font-size:15px;
  font-weight:650;
  line-height:1.2;
}
.apic-cost-card ul,
.apic-missing ul{
  margin:0;
  padding-left:17px;
  color:var(--apic-copy);
  font-size:10.5px;
  line-height:1.48;
}
.apic-cost-card li+li,
.apic-missing li+li{margin-top:6px}
.apic-missing{
  padding:12px 13px;
  border:1px solid var(--apic-line);
  border-left:3px solid var(--apic-plum);
  border-radius:0 12px 12px 0;
  background:var(--apic-cream);
}
.apic-coverage>div{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.apic-coverage span{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border:1px solid var(--apic-line);
  border-radius:999px;
  background:var(--apic-paper);
  color:var(--apic-plum-deep);
  font-size:9px;
  font-weight:800;
  line-height:1.2;
}
.apic-coverage b{color:var(--apic-copper)}

.apic-direction,
.apic-next{
  margin-top:13px;
  padding:12px 13px;
  border-left:3px solid var(--apic-copper);
  border-radius:0 12px 12px 0;
  background:var(--apic-cream);
}
.apic-direction p,
.apic-next p{
  margin:0;
  color:var(--apic-ink);
  font-size:12px;
  font-weight:700;
  line-height:1.5;
}
.apic-next{
  border-left-color:var(--apic-plum);
  background:#f4eff8;
}

.apic-quick{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:11px;
}
#apic-root.apic-root .apic-quick button.apic-quick-button{
  -webkit-appearance:none;
  appearance:none;
  min-height:34px;
  padding:7px 11px;
  border:1px solid var(--apic-copper);
  border-radius:999px;
  background-color:var(--apic-paper);
  background-image:none;
  color:var(--apic-plum-deep);
  box-shadow:none;
  cursor:pointer;
  font:850 10.5px/1.2 Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  text-shadow:none;
}
#apic-root.apic-root .apic-quick button.apic-quick-button:hover,
#apic-root.apic-root .apic-quick button.apic-quick-button:focus,
#apic-root.apic-root .apic-quick button.apic-quick-button:focus-visible,
#apic-root.apic-root .apic-quick button.apic-quick-button:active{
  border-color:var(--apic-copper-soft);
  background-color:var(--apic-plum-deep);
  background-image:none;
  color:var(--apic-ivory);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.20);
  text-decoration:none;
}
.apic-market-notice{
  margin:13px 0 0;
  padding-top:11px;
  border-top:1px solid var(--apic-soft-line);
  color:var(--apic-muted);
  font-size:10.5px;
  line-height:1.45;
}

.apic-truth{
  margin-top:12px;
  border:1px solid var(--apic-line);
  border-radius:13px;
  background:var(--apic-paper);
}
.apic-truth summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 11px;
  color:var(--apic-ink);
  cursor:pointer;
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  list-style:none;
  text-transform:uppercase;
}
.apic-truth summary::-webkit-details-marker{display:none}
.apic-truth summary b{
  padding:3px 6px;
  border-radius:999px;
  font-size:8px;
  letter-spacing:.05em;
}
.apic-truth-high{background:#e8f3e9;color:#2f6035}
.apic-truth-medium{background:#f4ead9;color:#82551c}
.apic-truth-low{background:#f4e3e3;color:#873c3c}
.apic-truth-body{
  padding:0 11px 11px;
  border-top:1px solid var(--apic-soft-line);
}
.apic-truth-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:6px;
  padding-top:10px;
}
.apic-truth-grid>div{min-width:0}
.apic-truth-grid small{
  display:block;
  color:var(--apic-muted);
  font-size:8px;
  text-transform:uppercase;
}
.apic-truth-grid strong{
  display:block;
  margin-top:2px;
  overflow-wrap:anywhere;
  color:var(--apic-ink);
  font-size:9px;
}
.apic-truth-body>p{
  margin:9px 0 0;
  color:var(--apic-muted);
  font-size:9.5px;
  line-height:1.4;
}
.apic-source-list{
  margin:9px 0 0;
  padding:0;
  list-style:none;
}
.apic-source-list li{
  display:grid;
  gap:1px;
  padding:6px 0;
  border-top:1px solid var(--apic-soft-line);
}
.apic-source-list strong{color:var(--apic-ink);font-size:9.5px}
.apic-source-list span{color:var(--apic-muted);font-size:8.5px}

.apic-actions{
  display:grid;
  gap:8px;
  margin-top:13px;
  padding-top:12px;
  border-top:1px solid var(--apic-soft-line);
}
.apic-action-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
#apic-root.apic-root a.apic-action,
#apic-root.apic-root button.apic-followup{
  display:inline-flex;
  min-height:39px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--apic-copper);
  border-radius:999px;
  background:var(--apic-copper-soft);
  color:var(--apic-ink);
  cursor:pointer;
  font-size:11px;
  font-weight:900;
  text-align:center;
  text-decoration:none;
}
#apic-root.apic-root a.apic-action-secondary{
  border-color:var(--apic-plum);
  background:transparent;
  color:var(--apic-plum);
}
#apic-root.apic-root button.apic-followup{
  width:100%;
  border-color:var(--apic-line);
  background:var(--apic-paper);
  color:var(--apic-ink);
}
#apic-root.apic-root a.apic-action:hover,
#apic-root.apic-root a.apic-action:focus,
#apic-root.apic-root a.apic-action:focus-visible,
#apic-root.apic-root a.apic-action:active,
#apic-root.apic-root button.apic-followup:hover,
#apic-root.apic-root button.apic-followup:focus,
#apic-root.apic-root button.apic-followup:focus-visible,
#apic-root.apic-root button.apic-followup:active{
  border-color:var(--apic-copper-soft);
  background-color:var(--apic-plum-deep);
  background-image:none;
  color:var(--apic-ivory);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.20);
  text-decoration:none;
}

.apic-lead{
  margin-top:12px;
  padding:13px;
  border:1px solid var(--apic-line);
  border-radius:15px;
  background:var(--apic-cream);
}
.apic-lead-title{
  margin:0;
  color:var(--apic-ink);
  font-family:"Source Serif 4",Georgia,serif;
  font-size:17px;
  font-weight:650;
}
.apic-lead-copy{
  margin:6px 0 10px;
  color:var(--apic-muted);
  font-size:10.5px;
  line-height:1.4;
}
.apic-lead-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
}
.apic-lead-grid .apic-field:nth-child(5),
.apic-lead-grid .apic-field:nth-child(6),
.apic-lead-grid .apic-field:nth-child(7),
.apic-consent,
.apic-submit{grid-column:1/-1}
.apic-field{
  width:100%;
  min-height:39px;
  padding:8px 9px;
  border:1px solid var(--apic-line);
  border-radius:10px;
  background:var(--apic-paper);
  color:var(--apic-ink);
  font:inherit;
  font-size:11.5px;
}
.apic-field:focus{
  border-color:var(--apic-copper);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.12);
}
.apic-honeypot{position:absolute;left:-10000px;width:1px;height:1px;opacity:0;pointer-events:none}
.apic-consent{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:7px;
  align-items:start;
  color:var(--apic-muted);
  font-size:9.5px;
  line-height:1.4;
}
#apic-root.apic-root button.apic-submit{
  -webkit-appearance:none;
  appearance:none;
  min-height:41px;
  border:1px solid var(--apic-plum);
  border-radius:999px;
  background-color:var(--apic-plum);
  background-image:none;
  color:var(--apic-ivory);
  box-shadow:none;
  cursor:pointer;
  font:900 11px/1.2 Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  text-shadow:none;
}
#apic-root.apic-root button.apic-submit:hover,
#apic-root.apic-root button.apic-submit:focus,
#apic-root.apic-root button.apic-submit:focus-visible,
#apic-root.apic-root button.apic-submit:active{
  border-color:var(--apic-copper-soft);
  background-color:var(--apic-plum-deep);
  background-image:none;
  color:var(--apic-ivory);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.20);
}

.apic-starters{
  display:grid;
  flex:0 0 auto;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
  padding:12px 14px;
  border-top:1px solid var(--apic-soft-line);
  background:var(--apic-ivory);
}
.apic-root.has-conversation .apic-starters{display:none}
#apic-root.apic-root .apic-starters button.apic-chip{
  -webkit-appearance:none;
  appearance:none;
  display:flex;
  min-height:44px;
  align-items:center;
  justify-content:flex-start;
  padding:9px 11px;
  border:1px solid var(--apic-line);
  border-radius:12px;
  background-color:var(--apic-paper);
  background-image:none;
  color:var(--apic-plum-deep);
  box-shadow:none;
  cursor:pointer;
  font:850 10.5px/1.2 Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  text-align:left;
  text-shadow:none;
}
#apic-root.apic-root .apic-starters button.apic-chip:hover,
#apic-root.apic-root .apic-starters button.apic-chip:focus,
#apic-root.apic-root .apic-starters button.apic-chip:focus-visible,
#apic-root.apic-root .apic-starters button.apic-chip:active{
  border-color:var(--apic-copper-soft);
  background-color:var(--apic-plum-deep);
  background-image:none;
  color:var(--apic-ivory);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.20);
  text-decoration:none;
}

.apic-status{
  flex:0 0 auto;
  min-height:8px;
  padding:0 15px 7px;
  background:var(--apic-ivory);
  color:var(--apic-muted);
  font-size:9.5px;
}
.apic-inputbar{
  display:grid;
  flex:0 0 auto;
  grid-template-columns:1fr 44px;
  gap:8px;
  align-items:end;
  padding:10px 12px 12px;
  border-top:1px solid var(--apic-line);
  background:var(--apic-cream);
}
.apic-input{
  width:100%;
  min-height:44px;
  max-height:104px;
  resize:none;
  padding:11px 12px;
  border:1px solid rgba(184,121,46,.55);
  border-radius:15px;
  background:var(--apic-paper);
  color:var(--apic-ink);
  font:inherit;
  font-size:13px;
  line-height:1.35;
}
.apic-input:focus{
  border-color:var(--apic-copper);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.13);
}
#apic-root.apic-root button.apic-send{
  -webkit-appearance:none;
  appearance:none;
  display:grid;
  width:44px;
  height:44px;
  min-width:44px;
  min-height:44px;
  padding:0;
  place-items:center;
  border:1px solid var(--apic-copper);
  border-radius:999px;
  background-color:var(--apic-copper-soft);
  background-image:none;
  color:var(--apic-plum-deep);
  box-shadow:none;
  cursor:pointer;
  font:inherit;
  line-height:0;
  text-shadow:none;
}
#apic-root.apic-root .apic-icon-send{width:22px;height:22px}
#apic-root.apic-root button.apic-send:hover,
#apic-root.apic-root button.apic-send:focus,
#apic-root.apic-root button.apic-send:focus-visible,
#apic-root.apic-root button.apic-send:active{
  border-color:var(--apic-copper-soft);
  background-color:var(--apic-plum-deep);
  background-image:none;
  color:var(--apic-ivory);
  outline:none;
  box-shadow:0 0 0 3px rgba(184,121,46,.20);
}
#apic-root.apic-root button.apic-send:disabled{cursor:wait;opacity:.58}

@media (max-width:720px){
  #apic-root.apic-root button.apic-launcher{
    right:calc(14px + env(safe-area-inset-right, 0px));
    bottom:calc(14px + env(safe-area-inset-bottom, 0px));
    min-height:50px;
  }
  .apic-panel,
  body.admin-bar .apic-panel{
    right:0;
    bottom:0;
    width:100vw;
    max-width:100vw;
    height:100dvh;
    max-height:100dvh;
    border-width:0;
    border-radius:0;
  }
  body.admin-bar .apic-panel{height:calc(100dvh - 46px)}
  .apic-head{padding:15px 14px 13px}
  .apic-title{font-size:23px}
  .apic-messages{padding:13px}
  .apic-advice{padding:15px}
  .apic-advice h3{font-size:20px}
  .apic-compare{grid-template-columns:1fr}
  .apic-cost-grid{grid-template-columns:1fr}
  .apic-starters{padding:10px 12px}
  .apic-inputbar{
    padding-bottom:calc(10px + env(safe-area-inset-bottom, 0px));
    padding-left:calc(10px + env(safe-area-inset-left, 0px));
    padding-right:calc(10px + env(safe-area-inset-right, 0px));
  }
}

@media (max-width:420px){
  .apic-known{grid-template-columns:1fr}
  .apic-starters{grid-template-columns:1fr 1fr}
  .apic-chip{min-height:42px;padding:8px;font-size:9.5px}
  .apic-action-row{grid-template-columns:1fr}
  .apic-lead-grid{grid-template-columns:1fr}
  .apic-lead-grid .apic-field,
  .apic-consent,
  .apic-submit{grid-column:1/-1}
  .apic-truth-grid{grid-template-columns:1fr 1fr}
}

@media (prefers-reduced-motion:reduce){
  .apic-root *{scroll-behavior:auto;transition:none}
}

/* v1.5.1 public answer clarity and governance separation */
.apic-leadership-context{
  margin:12px 0 0;
  padding:12px 13px;
  border:1px solid var(--apic-copper-soft);
  border-radius:13px;
  background:linear-gradient(180deg,var(--apic-paper),var(--apic-cream));
}
.apic-leadership-context small{
  display:block;
  color:var(--apic-plum);
  font-size:8.5px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.apic-leadership-context p{
  margin:5px 0 0;
  color:var(--apic-ink);
  font-size:10.5px;
  line-height:1.55;
}
.apic-source-list a{
  color:var(--apic-plum);
  font-size:9.5px;
  font-weight:850;
  text-decoration:underline;
  text-decoration-color:rgba(184,121,46,.5);
  text-underline-offset:2px;
}
.apic-source-list a:hover,
.apic-source-list a:focus{
  color:var(--apic-plum-deep);
  outline:none;
  text-decoration-color:var(--apic-copper);
}
.apic-truth-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
@media (max-width:420px){
  .apic-truth-grid{grid-template-columns:1fr 1fr;}
}

/* v1.5.2 conversation memory and icon geometry lock */

/* =========================================================
   v1.5.3 FOOTER-AWARE LAUNCHER & SAFE-AREA INTEGRITY LOCK
   - The launcher is fixed while browsing.
   - A semantic dock lane is created immediately before the
     real site footer only when the fixed launcher would overlap it.
   - The launcher then becomes document-anchored inside that lane,
     so footer links, legal copy and page content remain uncovered.
   - No body padding, fixed footer offset hack or page-specific CSS.
   ========================================================= */

.apic-launcher-dock-anchor{
  display:block;
  width:100%;
  height:0;
  min-height:0;
  margin:0;
  padding:0;
  border:0;
  pointer-events:none;
  background:transparent;
  overflow:visible;
  transition:height .18s ease;
}

.apic-launcher-dock-anchor.is-active{
  height:var(--apic-launcher-dock-height, 84px);
  min-height:var(--apic-launcher-dock-height, 84px);
}

#apic-root.apic-root.is-footer-docked button.apic-launcher{
  position:absolute;
  top:var(--apic-launcher-dock-top, auto);
  right:calc(20px + env(safe-area-inset-right, 0px));
  bottom:auto;
}

@media (max-width:720px){
  #apic-root.apic-root.is-footer-docked button.apic-launcher{
    right:calc(14px + env(safe-area-inset-right, 0px));
  }
}

@media (prefers-reduced-motion:reduce){
  .apic-launcher-dock-anchor{
    transition:none;
  }
}
