/* ============================================================
   LoanCheck — Brand tokens (from official brand sheet)
   Single source of truth for the site's look.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
  /* Brand colors */
  --navy:        #0D1B2A;   /* deep ink / dark surfaces */
  --brand:       #2563EB;   /* primary blue */
  --brand-dark:  #1d4fd7;   /* blue pressed */
  --lime:        #A3F15C;   /* accent / CTA */
  --lime-dark:   #8ad63f;   /* accent pressed */
  --brand-pale:  #E6F0FF;   /* tinted surfaces */
  --surface-2:   #F3F4F6;   /* alt section background */

  /* Aliases used across components */
  --accent:      var(--lime);
  --accent-dark: var(--lime-dark);

  /* Ink & text */
  --ink:   #0D1B2A;
  --body:  #384152;
  --muted: #6b7280;
  --line:  #e6e9f0;
  --surface: #ffffff;

  /* Type — Plus Jakarta Sans for everything (headings + body) */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape & depth */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 1px 3px rgba(13,27,42,.08);
  --shadow-md: 0 10px 30px rgba(13,27,42,.10);
  --shadow-lg: 0 30px 70px rgba(13,27,42,.18);

  --maxw: 1180px;
}

/* ── Editorial inline figure (shared across articles & pages) ── */
.art-figure { margin: 34px 0; }
.art-figure .art-figimg { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: #0D1B2A; box-shadow: 0 24px 50px -30px rgba(13,27,42,.5); }
.art-figure .art-figimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.art-figure figcaption { margin-top: 12px; font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.5; }
.art-figure figcaption strong { color: var(--ink); font-weight: 700; }

/* ── Inline photo band for product / content pages ── */
.photo-band { position: relative; width: 100%; aspect-ratio: 21 / 9; border-radius: 22px; overflow: hidden; background: #0D1B2A; box-shadow: 0 30px 60px -34px rgba(13,27,42,.5); }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-band .pb-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,16,30,.72) 0%, rgba(9,16,30,.42) 45%, rgba(9,16,30,0) 78%); display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(24px, 5vw, 60px); }
.photo-band .pb-overlay .pb-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #A3F15C; margin-bottom: 12px; }
.photo-band .pb-overlay h3 { color: #fff; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.18; margin: 0; max-width: 560px; }
.photo-band .pb-overlay p { color: rgba(255,255,255,.82); font-size: 15px; margin: 12px 0 0; max-width: 480px; }
@media (max-width: 640px) { .photo-band { aspect-ratio: 4 / 3; } .photo-band .pb-overlay { background: linear-gradient(0deg, rgba(9,16,30,.85) 0%, rgba(9,16,30,.45) 55%, rgba(9,16,30,.2) 100%); justify-content: flex-end; padding-bottom: 24px; } }

/* ---- site nav dropdowns (shared: was duplicated inline on every page) ---- */
  .nav-drop { position: relative; }
  .nav-drop::before { content: ""; position: absolute; top: 100%; left: -22px; right: -22px; height: 22px; }
  .nav-trigger { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; color: var(--body); background: none; border: 0; cursor: pointer; font-family: inherit; padding: 0; }
  .nav-trigger svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.4; transition: transform .2s ease; }
  .nav-drop:hover .nav-trigger svg { transform: rotate(180deg); }
  .nav-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 80; }
  .nav-drop:hover .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .nav-menu a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--body); }
  .nav-menu a:hover { background: var(--surface-2); color: var(--brand); }
  .nav-menu a .mi { width: 30px; height: 30px; border-radius: 8px; background: var(--brand-pale); color: var(--brand); display: grid; place-items: center; flex: none; }
  .nav-menu a .mi svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.9; }
  .nav-menu a .mt { display: block; }
  .nav-menu a .mt small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); margin-top: 1px; }
