/* Shared tokens + components for the homepage concept mockups.
   Uses the live site's design language (colors, Lora + DM Sans). */
:root{
  --blue:#1B55A5; --blue-d:#16457f; --ink:#1a1a1a; --ink2:#373737;
  --muted:#666; --faint:#999; --line:#e8e8e8; --line2:#eee;
  --bg:#fff; --bg2:#f7f8fa; --dark:#373737;
  --serif:'Lora',Georgia,serif; --sans:'DM Sans',system-ui,sans-serif;
  --maxw:1240px;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--sans);font-weight:300;-webkit-font-smoothing:antialiased}
a{color:inherit}

/* ── Header ── */
.hc-header{border-bottom:1px solid var(--line2)}
.hc-header-in{max-width:var(--maxw);margin:0 auto;padding:16px 40px;display:flex;align-items:center;justify-content:space-between}
.hc-logo{display:flex;align-items:center;gap:11px;text-decoration:none;color:var(--ink)}
.hc-logo-mark{width:30px;height:30px;flex-shrink:0}
.hc-logo-name{font-family:var(--serif);font-size:18px;line-height:1}
.hc-logo-name b{font-weight:600}
.hc-logo-name span{color:var(--faint);font-weight:400}
.hc-nav{display:flex;gap:26px;font-size:13.5px;font-weight:400}
.hc-nav a{text-decoration:none;color:var(--muted)}
.hc-nav a:hover{color:var(--blue)}

/* ── Footer ── */
.hc-footer{border-top:1px solid var(--line2);margin-top:80px}
.hc-footer-in{max-width:var(--maxw);margin:0 auto;padding:28px 40px;font-size:12.5px;color:var(--faint);display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.hc-footer a{color:var(--muted)}

/* ── Concept badge (so we can tell them apart) ── */
.hc-badge{position:fixed;left:14px;bottom:14px;z-index:50;background:var(--ink2);color:#fff;font-size:11px;font-weight:500;
  letter-spacing:.04em;text-transform:uppercase;padding:6px 11px;border-radius:999px;opacity:.82;font-family:var(--sans)}

/* ── Reusable: topic card ── */
.topic-card{display:block;text-decoration:none;color:inherit;border:1px solid var(--line);border-radius:10px;padding:18px 20px;background:#fff;transition:border-color .14s,box-shadow .14s,transform .14s}
.topic-card:hover{border-color:var(--blue);box-shadow:0 8px 24px rgba(24,33,50,.09);transform:translateY(-2px)}
.topic-card h3{font-family:var(--serif);font-weight:500;font-size:17px;margin:0 0 5px;color:var(--ink)}
.topic-card p{margin:0;font-size:13px;color:var(--muted);line-height:1.55}
.topic-ico{width:30px;height:30px;border-radius:7px;background:rgba(27,85,165,.10);color:var(--blue);display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.topic-ico svg{width:17px;height:17px}

/* ── Reusable: search box + results ── */
.hp-search{position:relative}
.hp-search-input{width:100%;font-family:var(--sans);font-size:16px;font-weight:400;color:var(--ink);
  padding:15px 18px 15px 46px;border:1.5px solid #d3d9e2;border-radius:10px;outline:none;background:#fff;transition:border-color .14s,box-shadow .14s}
.hp-search-input:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(27,85,165,.12)}
.hp-search-ico{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:var(--faint);pointer-events:none}
/* Overlay, not in flow. In flow it grew .hp-search from 56px to ~430px, and
   .hp-search-ico is pinned to top:50% of that box — so opening the results
   slid the magnifying glass into the middle of the list. Matches the nav
   search, which already positions its results this way. */
.hp-results{position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:30;
  max-height:min(60vh,420px);overflow-y:auto;
  border:1px solid var(--line);border-radius:10px;background:#fff;
  box-shadow:0 12px 34px rgba(24,33,50,.10);display:none}
.hp-results.open{display:block}
.hp-result{display:flex;justify-content:space-between;align-items:baseline;gap:14px;padding:11px 16px;text-decoration:none;border-bottom:1px solid var(--line2)}
.hp-result:last-child{border-bottom:none}
.hp-result:hover{background:var(--bg2)}
.hp-result-t{font-size:14px;color:var(--ink);font-weight:400}
.hp-result-m{font-size:11px;color:var(--faint);white-space:nowrap;text-transform:uppercase;letter-spacing:.04em}
.hp-result-none{padding:12px 16px;color:var(--faint);font-size:13px}
.hp-chip{display:inline-block;font-size:12.5px;color:var(--blue);background:rgba(27,85,165,.08);border:1px solid rgba(27,85,165,.18);
  padding:6px 12px;border-radius:999px;text-decoration:none;cursor:pointer;transition:background .12s}
.hp-chip:hover{background:rgba(27,85,165,.16)}

/* ── Reusable: US map ── */
.hp-map svg{display:block;width:100%;height:auto}
.hp-map .st{fill:#dce3ec;stroke:#fff;stroke-width:1;cursor:pointer;transition:fill .12s}
.hp-map .st:hover{fill:var(--blue)}
.hp-map-tip{position:fixed;background:var(--ink2);color:#fff;font-size:12.5px;font-weight:500;font-family:var(--sans);
  padding:4px 9px;border-radius:4px;pointer-events:none;opacity:0;transition:opacity .1s;z-index:100;white-space:nowrap}

.eyebrow{font-family:var(--sans);font-size:12px;font-weight:500;letter-spacing:.11em;text-transform:uppercase;color:var(--faint)}
.mode-num{font-family:var(--sans);font-size:12px;font-weight:600;color:var(--blue)}
