/* BalleBaazi — Mint Scorecard + Orange Campaign Energy
   LAYOUT_149 · MENU_015 · LIGHT_002 · TYPE_028 · CTA_041
   Cache: v=1 */
:root {
  --primary: #087A5B;
  --primary-ink: #065A44;
  --accent: #E28222;
  --accent-ink: #9A5410;
  --bg: #F2FAF6;
  --bg-2: #E7F6EE;
  --surface: #FFFFFF;
  --surface-2: #DCF3E8;
  --text: #12322B;
  --muted: #3F5C55;
  --border: #BFE2D4;
  --border-strong: #8FC9B3;
  --danger: #B42318;
  --focus: #0B6E4F;
  --shadow: 0 10px 30px rgba(18, 50, 43, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 72px;
  --rail-w: 248px;
  --sticky-cta-h: 64px;
  --font: "Nunito Sans", "Noto Sans Devanagari", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-ink); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff;
  padding: 8px 12px; z-index: 10000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Sticky header */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(242, 250, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
}
.header-inner {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 0 18px;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 16px;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); min-width: 0; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(145deg, var(--primary), #0BA97A);
  color: #fff; display: grid; place-items: center;
  font-weight: 800; letter-spacing: -0.03em; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand-name { font-weight: 800; font-size: 1.15rem; line-height: 1.1; letter-spacing: -0.02em; white-space: nowrap; }
.brand-tag { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }

.main-nav { display: none; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.92rem;
  padding: 8px 10px; border-radius: 999px; white-space: nowrap;
}
.main-nav a:hover { background: var(--surface-2); color: var(--primary-ink); }
.main-nav a.cta {
  background: var(--accent); color: #fff; padding: 9px 14px;
  box-shadow: 0 6px 16px rgba(226,130,34,.28);
}
.main-nav a.cta:hover { filter: brightness(0.96); color: #fff; }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-cta-ghost {
  display: none; text-decoration: none; font-weight: 700; color: var(--primary-ink);
  border: 1.5px solid var(--border-strong); padding: 8px 12px; border-radius: 999px; white-space: nowrap; font-size: 0.9rem;
}
.header-cta {
  display: none; text-decoration: none; font-weight: 800; color: #fff; background: var(--accent);
  padding: 9px 14px; border-radius: 999px; white-space: nowrap; font-size: 0.9rem;
}

.hamburger {
  width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--border-strong);
  background: var(--surface); display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; z-index: 300; position: relative;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: var(--header-h) 0 0 0; background: rgba(18,50,43,.42); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  width: min(88vw, 360px); height: 100%; max-height: 100dvh; overflow: auto;
  background: var(--surface); border-right: 1px solid var(--border);
  padding: 18px 16px 100px; margin-left: auto; transform: translateX(12px); transition: transform .2s;
  box-shadow: var(--shadow);
}
.mobile-drawer.open .drawer-panel { transform: none; }
.drawer-panel a {
  display: block; text-decoration: none; color: var(--text); font-weight: 700;
  padding: 12px 12px; border-radius: 12px; border: 1px solid transparent;
}
.drawer-panel a:hover { background: var(--bg-2); border-color: var(--border); }
.drawer-panel .drawer-cta {
  margin-top: 12px; background: var(--accent); color: #fff; text-align: center;
}
.drawer-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  font-weight: 800; margin: 16px 12px 6px;
}

/* Layout shell with editorial rail */
.page-shell {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 0 18px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.editorial-rail {
  display: none;
}
.rail-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.rail-title {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 800; margin: 0 0 10px;
}
.rail-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.rail-nav a {
  display: block; text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.9rem;
  padding: 8px 10px; border-radius: 10px; border-left: 3px solid transparent;
}
.rail-nav a:hover, .rail-nav a[aria-current="page"] {
  background: var(--surface-2); border-left-color: var(--accent); color: var(--primary-ink);
}
.mobile-rail-chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 10px 0 4px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.mobile-rail-chips::-webkit-scrollbar { display: none; }
.mobile-rail-chips a {
  flex: 0 0 auto; text-decoration: none; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  font-weight: 700; font-size: 0.82rem; padding: 8px 12px; border-radius: 999px;
}
.mobile-rail-chips a:hover { border-color: var(--accent); color: var(--accent-ink); }

main { min-width: 0; padding-bottom: calc(var(--sticky-cta-h) + 24px); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; text-decoration: none; border-radius: 999px; padding: 12px 18px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; font-size: 0.95rem;
  line-height: 1.1;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(226,130,34,.25); }
.btn-primary:hover { filter: brightness(0.97); color: #fff; }
.btn-secondary { background: var(--surface); color: var(--primary-ink); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-2); color: var(--primary-ink); }
.btn-ghost { background: transparent; color: var(--primary-ink); border-color: var(--border); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Hero sidebar-led */
.hero {
  display: grid; gap: 18px;
  background:
    radial-gradient(1200px 400px at 100% 0%, rgba(226,130,34,.12), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  margin-top: 14px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid; gap: 18px; align-items: stretch;
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); background: var(--surface-2); border: 1px solid var(--border);
  padding: 6px 10px; border-radius: 999px; margin: 0 0 12px;
}
.hero h1, h1#hero-h {
  font-size: clamp(1.9rem, 4.6vw, 3.35rem);
  line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 12px; font-weight: 800;
}
.hero-lede { font-size: 1.05rem; color: var(--muted); margin: 0 0 16px; max-width: 52ch; }
.hero-media {
  border-radius: 18px; overflow: hidden; border: 1.5px solid var(--border);
  background: var(--surface-2); min-height: 220px; position: relative;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.hero-note {
  margin-top: 14px; font-size: 0.88rem; color: var(--muted);
  border-left: 3px solid var(--accent); padding-left: 12px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin-top: 16px;
}
.hero-stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px;
}
.hero-stat b { display: block; font-size: 1.05rem; color: var(--primary-ink); }
.hero-stat span { font-size: 0.78rem; color: var(--muted); font-weight: 700; }

/* Sections */
.section {
  margin: 28px 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.section.band { background: linear-gradient(180deg, var(--bg-2), var(--surface)); }
.section.soft { background: var(--bg-2); }
.section.accent-edge { border-top: 4px solid var(--accent); }
.section-kicker {
  font-size: 0.75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 8px;
}
.section h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 10px; font-weight: 800;
}
.section h3 { font-size: 1.15rem; margin: 18px 0 8px; line-height: 1.25; font-weight: 800; }
.section p { margin: 0 0 12px; color: var(--text); }
.section .lede { color: var(--muted); font-size: 1.02rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Ruled strip / compliance */
.compliance-strip {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center;
  background: #fff8ef; border: 1.5px solid #f0d2a8; border-radius: var(--radius);
  padding: 12px 14px; margin: 16px 0; font-size: 0.92rem; color: var(--accent-ink); font-weight: 700;
}
.trust-strip {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin: 16px 0;
}
.trust-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
}
.trust-item strong { display: block; color: var(--primary-ink); font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* Quick actions rail */
.quick-actions {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.quick-actions a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text); background: var(--surface);
  border: 1.5px solid var(--border); border-radius: 14px; padding: 14px 16px; font-weight: 800;
}
.quick-actions a span { color: var(--muted); font-weight: 600; font-size: 0.88rem; }
.quick-actions a:hover { border-color: var(--accent); background: #fffaf3; }

/* Cards — limited equal grids */
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 14px;
}
.card, .data-card, .loose-card, .step-card, .hub-card, .blog-card {
  background: linear-gradient(160deg, #fff 0%, var(--bg) 140%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3, .data-card h3, .loose-card h3, .step-card h3 { margin-top: 0; }
.loose-card {
  background: linear-gradient(135deg, rgba(8,122,91,0.08) 0%, rgba(226,130,34,0.05) 100%);
  border: 2px solid rgba(8,122,91,0.28);
  box-shadow: 0 4px 16px rgba(18,50,43,0.06);
}
.step-card { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.step-num {
  width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.icon-box {
  width: 32px; height: 32px; border-radius: 10px; background: rgba(226,130,34,.18);
  color: var(--accent-ink); display: grid; place-items: center; font-weight: 800; margin-bottom: 8px;
}

/* Split / chapter */
.split {
  display: grid; gap: 16px; align-items: center;
}
.split-media {
  border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); background: var(--surface-2);
}
.split-media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.pull-quote {
  margin: 16px 0; padding: 14px 16px; border-left: 4px solid var(--accent);
  background: var(--bg-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700; color: var(--primary-ink); font-size: 1.05rem;
}

/* Tables / data poster */
.table-wrap { overflow-x: auto; margin: 12px 0; border: 1.5px solid var(--border); border-radius: 12px; }
table.data-table {
  width: 100%; border-collapse: collapse; min-width: 520px; background: #fff;
}
table.data-table th, table.data-table td {
  padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.94rem;
}
table.data-table th {
  background: var(--primary); color: #fff; font-weight: 800; white-space: nowrap;
}
table.data-table tr:nth-child(even) td { background: var(--bg); }
table.data-table tr:last-child td { border-bottom: 0; }

/* Thumbnail stream / pathway list */
.thumb-stream { display: grid; gap: 12px; }
/* stack-cards: vertical card stack used for glossary / habit lists on the homepage */
.stack-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.stack-cards > .loose-card,
.stack-cards > .card,
.stack-cards > .data-card {
  margin: 0;
}
@media (min-width: 640px) {
  .stack-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 900px) {
  .stack-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stack-cards.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.thumb-item {
  display: grid; grid-template-columns: 112px 1fr; gap: 12px; align-items: center;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; padding: 10px;
  text-decoration: none; color: inherit;
}
.thumb-item img {
  width: 112px; height: 78px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border);
}
.thumb-item h3 { margin: 0 0 4px; font-size: 1rem; }
.thumb-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.pathway-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; counter-reset: path; }
.pathway-list li {
  counter-increment: path; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 14px 14px 14px 56px; position: relative;
}
.pathway-list li::before {
  content: counter(path, decimal-leading-zero);
  position: absolute; left: 14px; top: 14px; font-weight: 800; color: var(--accent-ink);
}
.pathway-list a { font-weight: 800; text-decoration: none; color: var(--primary-ink); }
.pathway-list p { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }

/* FAQ */
.faq-list { display: grid; gap: 8px; margin-top: 10px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: 12px; background: #fff; padding: 0 14px;
}
.faq-item summary {
  cursor: pointer; font-weight: 800; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent-ink); font-weight: 800; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 14px; color: var(--muted); }

/* Inline images */
.inline-image-row {
  display: grid; gap: 14px; margin: 18px 0; align-items: center;
}
.inline-image-row img {
  width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius); border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.figure-cap { font-size: 0.86rem; color: var(--muted); margin-top: 6px; font-weight: 600; }
.content-image-card {
  margin: 18px 0; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border);
}
.content-image-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.content-image-card figcaption { padding: 10px 12px; font-size: 0.88rem; color: var(--muted); background: var(--bg-2); }

/* Page banner for child pages */
.page-banner {
  border-radius: 18px; overflow: hidden; border: 1.5px solid var(--border);
  margin: 14px 0 18px; background: var(--surface-2);
}
.page-banner img { width: 100%; aspect-ratio: 21/9; object-fit: cover; min-height: 180px; max-height: 360px; }
.page-intro { margin-bottom: 8px; }

/* Footer */
.site-footer {
  background: #0f2a24;
  color: #d7ebe3;
  margin-top: 20px;
  padding: 40px 18px 110px;
}
.footer-inner {
  max-width: calc(var(--max) + 80px); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #a8c7bc; font-size: 0.92rem; max-width: 40ch; }
.footer-col h2, .footer-col h3 {
  color: #fff; font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col a { color: #cfe5db; text-decoration: none; font-weight: 600; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: calc(var(--max) + 80px); margin: 28px auto 0; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12); color: #90b3a7; font-size: 0.86rem;
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: space-between;
}
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; color: #fff; text-decoration: none; font-weight: 800; font-size: 0.8rem;
}

/* Mobile sticky CTA — single PLAY NOW */
.mobile-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 240;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(242,250,246,.94); border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.mobile-sticky-cta a {
  display: flex; width: 100%; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 800;
  border-radius: 14px; min-height: 48px; font-size: 1rem; letter-spacing: .04em;
  box-shadow: 0 8px 20px rgba(226,130,34,.3); white-space: nowrap;
}
@media (min-width: 900px) {
  .mobile-sticky-cta { display: none; }
  main { padding-bottom: 40px; }
  .site-footer { padding-bottom: 40px; }
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 0.86rem; color: var(--muted); margin: 10px 0 0; font-weight: 600;
}
.breadcrumbs a { color: var(--primary-ink); text-decoration: none; }
.breadcrumbs span { opacity: .6; }

/* TOC */
.toc {
  background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 14px; padding: 14px 16px; margin: 14px 0;
}
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 18px; }
.toc a { text-decoration: none; font-weight: 700; }

/* Checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.checklist li {
  padding: 10px 12px 10px 38px; position: relative; border: 1px solid var(--border);
  border-radius: 12px; background: #fff; font-weight: 600;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 12px; top: 10px; color: var(--primary); font-weight: 900;
}

/* Responsive */
@media (min-width: 640px) {
  .trust-strip { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .inline-image-row { grid-template-columns: 1.1fr 1fr; }
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
@media (min-width: 900px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .header-cta, .header-cta-ghost { display: inline-flex; }
  .mobile-rail-chips { display: none; }
  .page-shell { grid-template-columns: var(--rail-w) minmax(0, 1fr); align-items: start; gap: 28px; padding-top: 8px; }
  .editorial-rail { display: block; position: sticky; top: calc(var(--header-h) + 14px); }
  .hero { padding: 26px; }
  .section { padding: 28px 26px; }
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 899px) {
  .hero {
    min-height: 480px !important;
    max-height: 720px !important;
    padding: 80px 0 60px !important;
    padding: 16px !important;
    overflow: hidden !important;
  }
  .hero-grid { gap: 10px !important; }
  .hero h1, h1#hero-h { font-size: 32px !important; line-height: 1.1 !important; margin-bottom: 8px !important; }
  .hero-lede { font-size: 16px !important; line-height: 1.45 !important; margin-bottom: 10px !important; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-media { max-height: 200px !important; min-height: 140px !important; }
  .hero-media img { height: 200px !important; max-height: 200px !important; object-fit: cover !important; aspect-ratio: auto !important; }
  .hero-stats { display: none !important; }
  .hero-note { display: none !important; }
  .hero .cta-row .btn { flex: 1 1 auto !important; padding: 10px 14px !important; }
  .page-banner { max-height: 220px; }
  .page-banner img { max-height: 220px; min-height: 140px; object-fit: cover; }
  .mobile-sticky-cta a { width: 100% !important; }
}

/* Utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.muted { color: var(--muted); }
.tag {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; background: var(--surface-2); color: var(--primary-ink);
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 8px;
}
.note-box {
  border: 1.5px dashed var(--border-strong); background: var(--bg); border-radius: 12px; padding: 12px 14px; margin: 12px 0;
}
.final-cta-band {
  text-align: center; background: linear-gradient(135deg, #0c6b50, #0a8a64 55%, #c96d14);
  color: #fff; border: 0; border-radius: 20px; padding: 28px 18px;
}
.final-cta-band h2 { color: #fff; }
.final-cta-band p { color: rgba(255,255,255,.9); }
.final-cta-band .btn-primary { background: #fff; color: var(--accent-ink); }
.final-cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
