/* =========================================================================
   Propwise — marketing site
   Type: Fraunces (display) + Manrope (text).  Palette: forest green + warm ink.
   ========================================================================= */

:root {
  --ink: #0e1a15;
  --ink-soft: #34433c;
  --muted: #61716a;
  --line: #e4ebe6;
  --paper: #ffffff;
  --wash: #f4f8f5; /* green-tinted off-white */
  --wash-2: #eef4f0;

  --green-50: #ecfaf1;
  --green-100: #d3f2df;
  --green-500: #12a35f;
  --green-600: #0c8a4f;
  --green-700: #0a6f42;
  --forest: #06301f;
  --forest-2: #0a3d29;

  --indigo: #4f46e5; /* estates accent, used sparingly */
  --gold: #c9a24b;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(11, 40, 27, 0.05), 0 2px 8px rgba(11, 40, 27, 0.04);
  --shadow: 0 12px 34px -14px rgba(9, 45, 30, 0.28);
  --shadow-lg: 0 34px 70px -28px rgba(9, 45, 30, 0.38);

  --wrap: 1120px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---- type ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.06; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.65; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow--light { color: #8fe3b4; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green-500); box-shadow: 0 0 0 4px rgba(18,163,95,0.16); }
.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 26px; height: 26px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 14px; border: 1px solid transparent;
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 18px; height: 18px; }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 10px 24px -12px rgba(12,138,79,.8); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 14px 30px -12px rgba(12,138,79,.9); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--wash); border-color: #cfe0d5; }
.btn-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-light:hover { background: rgba(255,255,255,.15); }
.btn-white { background: #fff; color: var(--forest); }
.btn-white:hover { background: var(--green-50); }
.btn-sm { padding: 9px 15px; font-size: .88rem; border-radius: 12px; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand .mark { width: 34px; height: 34px; border-radius: 10px; background: var(--green-600); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); }
.brand .mark .icon { width: 19px; height: 19px; }
.brand b { color: var(--green-600); font-weight: 600; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 10px; font-weight: 500; font-size: .93rem; color: var(--ink-soft); }
.nav-links a:hover { background: var(--wash); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .sign-in { display: none; }
.menu-toggle { display: inline-flex; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--ink); }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; padding: 10px 24px 18px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 6px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.mobile-menu a:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta .sign-in { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---- sections ---- */
section { position: relative; }
.band { padding: 88px 0; }
.band--wash { background: var(--wash); }
.band--tight { padding: 64px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head p { margin-top: 16px; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---- hero ---- */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero h1 { margin-top: 22px; }
.hero h1 em { font-style: italic; color: var(--green-600); }
.hero .lead { margin-top: 22px; max-width: 34ch; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chips { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--green-50); color: var(--green-700); }
.chip .icon { width: 15px; height: 15px; }
.chip--indigo { background: #eef1ff; color: var(--indigo); }
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
}

/* hero visual */
.stage { position: relative; min-height: 440px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.dash {
  padding: 20px; position: relative; z-index: 1;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-top .t { font-family: var(--font-display); font-size: 1.02rem; }
.pill { font-size: .72rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: var(--green-50); color: var(--green-700); display: inline-flex; align-items: center; gap: 5px; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi { background: var(--wash); border-radius: 14px; padding: 14px; }
.kpi .n { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; }
.kpi .l { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; padding: 8px 4px 0; }
.bars i { flex: 1; background: linear-gradient(var(--green-500), var(--green-600)); border-radius: 6px 6px 3px 3px; opacity: .9; }
.rowline { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); }
.rowline .av { width: 30px; height: 30px; border-radius: 9px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; font-size: .72rem; font-weight: 700; }
.rowline .nm { font-size: .84rem; font-weight: 600; }
.rowline .mt { font-size: .72rem; color: var(--muted); }
.rowline .amt { margin-left: auto; font-weight: 700; font-size: .86rem; }

.float-pay {
  position: absolute; right: -14px; bottom: -26px; width: 232px; z-index: 3;
  background: #fff; border-radius: 22px; padding: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.float-pay .mp { display: flex; align-items: center; gap: 10px; }
.float-pay .mp .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--green-600); color: #fff; display: grid; place-items: center; }
.float-pay .mp .ic .icon { width: 19px; height: 19px; }
.float-pay .mp b { font-size: .9rem; }
.float-pay .mp span { font-size: .72rem; color: var(--muted); display: block; }
.float-pay .amt { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin: 12px 0 2px; }
.float-pay .amt small { font-size: .8rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.float-pay .go { margin-top: 10px; text-align: center; background: var(--green-600); color: #fff; border-radius: 12px; padding: 10px; font-weight: 700; font-size: .84rem; }
.glow { position: absolute; inset: 8% -10% -10% 10%; background: radial-gradient(60% 60% at 50% 40%, rgba(18,163,95,.22), transparent 70%); filter: blur(10px); z-index: 0; }

/* ---- trust strip ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px; padding-top: 26px; padding-bottom: 26px; }
.trust .label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.trust .items { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-left: auto; }
.trust .items span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink-soft); }
.trust .items .icon { width: 18px; height: 18px; color: var(--green-600); }

/* ---- pillars ---- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d3e3d8; }
.feature .badge { width: 46px; height: 46px; border-radius: 13px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; margin-bottom: 16px; }
.feature h3 { margin-bottom: 7px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.step { position: relative; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .no { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--green-600); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--green-50); margin-bottom: 16px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---- audiences ---- */
.aud {
  border-radius: var(--radius-lg); padding: 30px; color: #fff; position: relative; overflow: hidden;
  min-height: 260px; display: flex; flex-direction: column;
}
.aud h3 { color: #fff; font-size: 1.45rem; }
.aud p { margin-top: 12px; color: rgba(255,255,255,.82); }
.aud ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.aud li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.9); }
.aud li .icon { width: 17px; height: 17px; margin-top: 3px; color: #a7f3cd; flex: none; }
.aud .tag { display: inline-flex; width: fit-content; align-items: center; gap: 7px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.14); margin-bottom: 18px; }
.aud--green { background: linear-gradient(160deg, var(--green-600), var(--green-700)); }
.aud--forest { background: linear-gradient(160deg, var(--forest-2), var(--forest)); }
.aud--indigo { background: linear-gradient(160deg, #5b52ea, #3f37c9); }

/* ---- split feature ---- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.rev .visual { order: -1; } }
.checklist { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; }
.checklist .tick .icon { width: 16px; height: 16px; }
.checklist b { font-weight: 700; }
.checklist span { color: var(--muted); font-size: .94rem; }

.visual { background: linear-gradient(160deg, var(--wash), var(--wash-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.mini { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.mini + .mini { margin-top: 14px; }
.mini-h { padding: 14px 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.mini-h .t { font-weight: 700; font-size: .9rem; }
.mini-b { padding: 14px 16px; }
.line { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: .88rem; }
.line + .line { border-top: 1px dashed var(--line); }
.line .mut { color: var(--muted); }
.progress { height: 9px; background: var(--wash-2); border-radius: 999px; overflow: hidden; margin-top: 4px; }
.progress i { display: block; height: 100%; background: var(--green-500); border-radius: 999px; }
.tag-ok { font-size: .72rem; font-weight: 700; color: var(--green-700); background: var(--green-50); padding: 3px 8px; border-radius: 999px; }
.tag-amber { font-size: .72rem; font-weight: 700; color: #a15c00; background: #fff3dd; padding: 3px 8px; border-radius: 999px; }

/* phone */
.phone { max-width: 300px; margin: 0 auto; background: #0e1a15; border-radius: 34px; padding: 12px; box-shadow: var(--shadow-lg); }
.phone-screen { background: #fff; border-radius: 24px; overflow: hidden; }
.phone-top { background: linear-gradient(150deg, var(--green-600), var(--green-700)); color: #fff; padding: 22px 18px 20px; }
.phone-top .hi { font-size: .82rem; opacity: .85; }
.phone-top .bal { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-top: 4px; }
.phone-top .sub { font-size: .74rem; opacity: .8; margin-top: 4px; }
.phone-top .pay { margin-top: 16px; background: #fff; color: var(--green-700); text-align: center; border-radius: 12px; padding: 11px; font-weight: 700; font-size: .86rem; }
.phone-body { padding: 16px 18px 22px; }
.phone-body .h { font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.phone-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.phone-row + .phone-row { border-top: 1px solid var(--line); }
.phone-row .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex: none; }
.phone-row .ic .icon { width: 16px; height: 16px; }
.phone-row .nm { font-size: .83rem; font-weight: 600; }
.phone-row .mt { font-size: .7rem; color: var(--muted); }
.phone-row .amt { margin-left: auto; font-weight: 700; font-size: .84rem; }

/* ---- dark band ---- */
.dark { background: var(--forest); color: #eaf6ef; }
.dark h2 { color: #fff; }
.dark .lead { color: rgba(234,246,239,.78); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.tcard { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; }
.tcard .badge { width: 44px; height: 44px; border-radius: 12px; background: rgba(167,243,205,.14); color: #9be9bf; display: grid; place-items: center; margin-bottom: 14px; }
.tcard h3 { color: #fff; margin-bottom: 6px; }
.tcard p { color: rgba(234,246,239,.68); font-size: .92rem; }

/* ---- pricing ---- */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
@media (min-width: 780px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative;
}
.price.pop { border-color: var(--green-500); box-shadow: var(--shadow); }
.price .flag { position: absolute; top: 20px; right: 20px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); background: var(--green-50); padding: 5px 10px; border-radius: 999px; }
.price .name { font-weight: 700; font-size: 1.05rem; }
.price .amt { font-family: var(--font-display); font-size: 3rem; font-weight: 600; margin: 14px 0 2px; }
.price .amt small { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--muted); }
.price .note { color: var(--muted); font-size: .9rem; min-height: 40px; }
.price ul { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; }
.price li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.price li .icon { width: 17px; height: 17px; color: var(--green-600); flex: none; margin-top: 3px; }
.price .btn { width: 100%; justify-content: center; }

/* ---- faq ---- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq details[open] { border-color: #cfe0d5; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; transition: transform .2s ease; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .a { padding: 0 20px 20px; color: var(--muted); }

/* ---- final cta ---- */
.cta-final { background: linear-gradient(160deg, var(--forest-2), var(--forest)); color: #fff; border-radius: var(--radius-lg); padding: 56px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; }
.cta-final p { margin: 16px auto 0; max-width: 52ch; color: rgba(234,246,239,.8); }
.cta-final .row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-final .sheen { position: absolute; inset: -40% 30% auto -10%; height: 340px; background: radial-gradient(50% 50% at 50% 50%, rgba(18,163,95,.5), transparent 70%); filter: blur(20px); }

/* ---- footer ---- */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer .about { max-width: 30ch; color: var(--muted); font-size: .92rem; margin-top: 14px; }
.footer h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--ink-soft); font-size: .93rem; }
.footer a:hover { color: var(--green-700); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--muted); font-size: .86rem; }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .pulse { animation: none; }
}

/* ---- community / testimonials ---- */
.community-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 820px) { .community-grid { grid-template-columns: repeat(3, 1fr); } }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ccard .art { padding: 20px 20px 0; background: linear-gradient(165deg, #eafaf1, #dcf1e5); }
.ccard .art svg { width: 100%; height: auto; display: block; }
.ccard .body { padding: 22px 24px 26px; }
.ccard .stars { display: flex; gap: 3px; color: var(--gold); font-size: .95rem; letter-spacing: 1px; margin-bottom: 12px; }
.ccard .quote { font-family: var(--font-display); font-weight: 500; font-size: 1.16rem; line-height: 1.38; letter-spacing: -0.01em; color: var(--ink); }
.ccard .who { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.ccard .who .av { width: 36px; height: 36px; border-radius: 11px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; font-weight: 700; font-size: .78rem; flex: none; }
.ccard .who .nm { font-weight: 700; font-size: .9rem; }
.ccard .who .rl { font-size: .78rem; color: var(--muted); }
