/* ===== Hero =============================================== */
  .hero { padding: 64px 0 96px; position: relative; overflow: hidden; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
  .hero-eyebrow { color: var(--slate-70); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; }
  .hero-eyebrow .pill { padding: 4px 10px; border: 1px solid var(--slate-12); border-radius: 999px; background: var(--paper); }
  .hero h1 .em { color: var(--ember); }
  .hero p.lede { margin: 28px 0 36px; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .hero-foot {
    display: flex; gap: 22px; align-items: center; margin-top: 40px;
    color: var(--slate-70); font-size: 13.5px;
    padding-top: 22px; border-top: 1px solid var(--slate-12);
  }
  .hero-foot .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); }

  /* ===== Hero visual: abstract permit register ============== */
  .register {
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 0 rgba(42,51,64,0.04), 0 30px 60px -30px rgba(42,51,64,0.18);
    overflow: hidden;
    position: relative;
  }
  .register-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--slate-12);
    background: var(--cream-light);
  }
  .register-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-12); }
  .register-bar .title { margin-left: 10px; font-size: 13px; color: var(--slate-70); font-weight: 500; }
  .register-bar .search { margin-left: auto; padding: 5px 12px; font-size: 12px; border-radius: 4px; border: 1px solid var(--slate-12); color: var(--slate-50); background: var(--paper); }
  .register-head {
    padding: 22px 24px 14px;
    display: flex; align-items: flex-end; justify-content: space-between;
    border-bottom: 1px solid var(--slate-12);
  }
  .register-head h3 { font-size: 17px; font-weight: 600; }
  .register-head .meta { font-size: 12.5px; color: var(--slate-70); }
  .register-tabs { display: flex; gap: 18px; margin-top: 12px; }
  .register-tabs span { font-size: 12.5px; font-weight: 500; color: var(--slate-50); padding-bottom: 8px; border-bottom: 2px solid transparent; }
  .register-tabs span.active { color: var(--slate); border-color: var(--slate); }
  .register-table { padding: 4px 0; }
  .reg-row {
    display: grid;
    grid-template-columns: 0.7fr 1.2fr 0.8fr 0.7fr 0.7fr;
    gap: 14px;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--slate-06);
    font-size: 13.5px;
  }
  .reg-row:last-child { border-bottom: none; }
  .reg-row .site { font-weight: 500; color: var(--slate); }
  .reg-row .perm { color: var(--slate-70); }
  .reg-row .num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--slate-50); }
  .reg-row .date { font-size: 12.5px; color: var(--slate-70); }
  .reg-row.head {
    background: var(--cream-light);
    color: var(--slate-50);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 24px;
    border-bottom: 1px solid var(--slate-12);
  }
  .reg-row.attention {
    background: linear-gradient(90deg, rgba(217,83,30,0.06), rgba(217,83,30,0));
    position: relative;
  }
  .reg-row.attention::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ember);
  }
  .pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 500;
    background: var(--slate-06); color: var(--slate-70);
  }
  .pill.compliant { background: var(--forest-tint); color: var(--forest); }
  .pill.attention { background: var(--ember-tint); color: var(--ember); }
  .pill.expired { background: var(--rust-tint); color: var(--rust); }
  .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
  .register-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
    background: var(--cream-light);
    border-top: 1px solid var(--slate-12);
    font-size: 12.5px;
    color: var(--slate-70);
  }
  .register-foot .group { display: flex; gap: 18px; align-items: center; }

  .hero-floater {
    position: absolute;
    right: -8px;
    bottom: 64px;
    background: var(--slate);
    color: var(--cream);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px -20px rgba(42,51,64,0.4);
    max-width: 260px;
    font-size: 13.5px;
    line-height: 1.4;
  }
  .hero-floater .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ember); margin-bottom: 4px; display: block; }
  @media (max-width: 980px) { .hero-floater { display: none; } }

  /* ===== Problem section ==================================== */
  .problem-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) { .problem-grid { grid-template-columns: 1fr; gap: 48px; } }
  .problem-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 22px; }
  .problem-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--slate-70); line-height: 1.5; }
  .problem-list li b { color: var(--slate); font-weight: 500; }
  .problem-list .x { flex: 0 0 22px; height: 22px; border-radius: 4px; background: var(--rust-tint); color: var(--rust); display: grid; place-items: center; font-size: 12px; font-weight: 600; }

  /* Chaos visual */
  .chaos {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin-left: auto;
  }
  .chaos-card {
    position: absolute;
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: 6px;
    box-shadow: 0 12px 28px -16px rgba(42,51,64,0.18);
    padding: 12px 14px;
    font-size: 12.5px;
    color: var(--slate-70);
  }
  .chaos-card .ftype { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-50); font-weight: 500; margin-bottom: 4px; }
  .chaos-card .name { color: var(--slate); font-weight: 500; font-size: 13.5px; }
  .chaos-card .when { margin-top: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--slate-50); }
  .chaos-1 { top: 4%; left: 6%; transform: rotate(-6deg); width: 56%; }
  .chaos-2 { top: 8%; right: 4%; transform: rotate(4deg); width: 50%; }
  .chaos-3 { top: 38%; left: 18%; transform: rotate(2deg); width: 52%; }
  .chaos-4 { top: 44%; right: 8%; transform: rotate(-3deg); width: 46%; }
  .chaos-5 { bottom: 8%; left: 4%; transform: rotate(-2deg); width: 50%; }
  .chaos-6 { bottom: 4%; right: 12%; transform: rotate(5deg); width: 48%; }
  .chaos-card.expired { border-color: rgba(163,58,42,0.3); }
  .chaos-card.expired .name { color: var(--rust); }

  /* ===== Features grid ====================================== */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--slate-12);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
  }
  @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
  .feature {
    background: var(--paper);
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .feature .icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: var(--cream);
    border-radius: 8px;
    color: var(--slate);
  }
  .feature h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .feature p { margin: 0; font-size: 14.5px; color: var(--slate-70); line-height: 1.5; }
  .feature .tag { align-self: flex-start; margin-top: auto; }
  .feature.v2 { background: var(--cream-light); }

  /* ===== Big dashboard mock ================================ */
  .dash {
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    box-shadow: 0 50px 100px -40px rgba(42,51,64,0.25);
    margin-top: 64px;
    overflow: hidden;
  }
  .dash-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--slate-12);
    background: var(--cream-light);
  }
  .dash-bar .dots { display: flex; gap: 6px; }
  .dash-bar .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-12); }
  .dash-bar .url {
    margin: 0 auto;
    padding: 4px 14px;
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: 4px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--slate-50);
  }
  .dash-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 460px;
  }
  @media (max-width: 800px) { .dash-body { grid-template-columns: 1fr; } .dash-side { display: none; } }
  .dash-side {
    border-right: 1px solid var(--slate-12);
    padding: 22px 18px;
    background: var(--cream-light);
  }
  .dash-side h6 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-50); font-weight: 500; margin: 0 8px 8px; }
  .dash-side ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 2px; }
  .dash-side ul li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    font-size: 13.5px; color: var(--slate-70); border-radius: 6px;
  }
  .dash-side ul li.active { background: var(--paper); color: var(--slate); font-weight: 500; box-shadow: 0 1px 0 var(--slate-06); }
  .dash-side ul li .ico { width: 14px; height: 14px; border-radius: 3px; background: var(--slate-12); flex: 0 0 14px; }
  .dash-side ul li.active .ico { background: var(--ember); }
  .dash-main { padding: 28px 32px 32px; }
  .dash-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
  .dash-head h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
  .dash-head .sub { font-size: 13px; color: var(--slate-70); margin-top: 4px; }
  .dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
  @media (max-width: 700px) { .dash-kpis { grid-template-columns: 1fr 1fr; } }
  .kpi {
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-md);
    padding: 16px;
  }
  .kpi .l { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-50); font-weight: 500; }
  .kpi .n { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; }
  .kpi.ember .n { color: var(--ember); }
  .kpi.forest .n { color: var(--forest); }
  .kpi .delta { font-size: 11.5px; color: var(--slate-50); margin-top: 4px; }

  .dash-cols {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
  }
  @media (max-width: 700px) { .dash-cols { grid-template-columns: 1fr; } }
  .panel { border: 1px solid var(--slate-12); border-radius: var(--radius-md); padding: 18px; }
  .panel h4 { font-size: 13px; font-weight: 600; letter-spacing: -0.005em; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
  .panel h4 .seeall { font-size: 11.5px; font-weight: 500; color: var(--slate-50); }
  .upcoming { display: grid; gap: 10px; }
  .upcoming .item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--cream-light);
    font-size: 13px;
  }
  .upcoming .item .day { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--slate-50); }
  .upcoming .item .label { color: var(--slate); font-weight: 500; }
  .upcoming .item .sub { font-size: 12px; color: var(--slate-50); }
  .upcoming .item.due .day { color: var(--ember); }

  .donut { display: flex; align-items: center; gap: 16px; }
  .donut svg { width: 92px; height: 92px; }
  .donut-legend { font-size: 13px; color: var(--slate-70); display: grid; gap: 6px; }
  .donut-legend span { display: inline-flex; align-items: center; gap: 8px; }
  .donut-legend .sw { width: 9px; height: 9px; border-radius: 2px; }

  /* ===== Facility chips ==================================== */
  .facilities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .facilities { grid-template-columns: repeat(2, 1fr); } }
  .fac {
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-md);
    padding: 22px 20px 24px;
    background: var(--paper);
    display: flex; flex-direction: column; gap: 10px;
    transition: transform var(--t-base), border-color var(--t-base);
  }
  .fac:hover { transform: translateY(-2px); border-color: var(--slate-30); }
  .fac .code { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--ember); font-weight: 500; letter-spacing: 0.02em; }
  .fac h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .fac p { font-size: 13px; color: var(--slate-70); margin: 4px 0 0; line-height: 1.45; }

  /* ===== M365 band ========================================= */
  .m365 {
    background: var(--cream-light);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 900px) { .m365 { grid-template-columns: 1fr; } }
  .m365 h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
  .m365 p { color: var(--slate-70); margin-top: 18px; }
  .m365-diagram {
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-md);
    padding: 28px;
    display: grid; gap: 14px;
  }
  .m365-node {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--slate-12);
    border-radius: 8px;
    font-size: 13.5px;
  }
  .m365-node .badge { width: 28px; height: 28px; border-radius: 6px; background: var(--cream); display: grid; place-items: center; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--slate-70); }
  .m365-node b { font-weight: 500; color: var(--slate); }
  .m365-node small { color: var(--slate-50); font-size: 12px; }
  .m365-node.you { border-left: 3px solid var(--slate); }
  .m365-node.us { border-left: 3px solid var(--ember); }
  .m365-arrow { text-align: center; color: var(--slate-30); font-family: 'IBM Plex Mono', monospace; font-size: 14px; line-height: 1; padding: 2px 0; }

  /* ===== Pricing preview =================================== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
  .tier {
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    padding: 32px 30px 30px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .tier.featured {
    border-color: var(--slate);
    background: var(--slate);
    color: var(--cream);
  }
  .tier.featured h3, .tier.featured .price { color: var(--cream); }
  .tier.featured ul li { color: rgba(245,241,234,0.85); }
  .tier.featured ul li::before { background: var(--ember); }
  .tier .badge {
    position: absolute; top: 22px; right: 22px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ember); background: var(--ember-tint);
    padding: 4px 8px; border-radius: 4px; font-weight: 600;
  }
  .tier h3 { font-size: 18px; font-weight: 600; }
  .tier .sites { font-size: 13px; color: var(--slate-70); margin-top: 4px; }
  .tier.featured .sites { color: rgba(245,241,234,0.65); }
  .tier .price { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; margin: 22px 0 4px; }
  .tier .price small { font-size: 14px; font-weight: 400; color: var(--slate-70); margin-left: 4px; letter-spacing: 0; }
  .tier.featured .price small { color: rgba(245,241,234,0.6); }
  .tier .annual { font-size: 12.5px; color: var(--slate-50); }
  .tier.featured .annual { color: rgba(245,241,234,0.5); }
  .tier ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
  .tier ul li { font-size: 14px; color: var(--slate-70); padding-left: 22px; position: relative; line-height: 1.45; }
  .tier ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 2px; background: var(--slate-30); }
  .tier .btn { width: 100%; justify-content: center; margin-top: auto; }

  .setup-note {
    margin-top: 28px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    background: var(--cream-deep);
    font-size: 14px;
    color: var(--slate-70);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .setup-note b { color: var(--slate); font-weight: 500; }

  /* ===== Founder ========================================== */
  .founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } .founder-photo { max-width: 280px; margin: 0 auto; } }
  .founder-photo {
    aspect-ratio: 4/5;
    background:
      repeating-linear-gradient(135deg, rgba(245,241,234,0.06) 0 16px, rgba(245,241,234,0) 16px 32px),
      var(--slate);
    border-radius: var(--radius-md);
    position: relative;
    color: rgba(245,241,234,0.4);
    overflow: hidden;
  }
  .founder-photo-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    border-radius: inherit;
  }
  .founder-photo .ph {
    position: absolute;
    inset: auto 18px 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
  .founder-photo .frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(245,241,234,0.18);
  }
  .founder blockquote {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--slate);
    margin: 0 0 28px;
  }
  .founder cite {
    font-style: normal;
    font-size: 14px;
    color: var(--slate-70);
    display: block;
  }
  .founder cite b { color: var(--slate); font-weight: 500; }

  /* ===== FAQ ============================================== */
  .faq-list { margin-top: 48px; border-top: 1px solid var(--slate-12); }
  .faq {
    border-bottom: 1px solid var(--slate-12);
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--slate);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--slate-50);
    transition: transform var(--t-base);
  }
  .faq[open] summary::after { content: '−'; }
  .faq .ans {
    padding: 0 0 24px;
    font-size: 15.5px;
    color: var(--slate-70);
    max-width: 72ch;
    line-height: 1.6;
  }

  /* ===== Final CTA band =================================== */
  .cta-band {
    background: var(--slate);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: clamp(56px, 7vw, 88px);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--cream); margin: 0 auto; max-width: 16ch; }
  .cta-band p { color: rgba(245,241,234,0.7); margin: 22px auto 36px; max-width: 50ch; font-size: 17px; }
  .cta-band .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .cta-band::before {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--ember) 50%, transparent 100%);
    opacity: 0.6;
  }

  /* small layout helpers ------------------------------------ */
  .center-narrow { max-width: 720px; margin: 0 auto; text-align: center; }
  .section-head { max-width: 760px; margin: 0 0 0; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head .lede { margin-top: 18px; }

  /* ===== Hero visual: live compliance-score dashboard ====== */
  .scoreapp {
    background: var(--paper);
    border: 1px solid var(--slate-12);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 0 rgba(42,51,64,0.04), 0 30px 60px -30px rgba(42,51,64,0.22);
    overflow: hidden;
    position: relative;
  }
  .sa-bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px; border-bottom: 1px solid var(--slate-12); background: var(--cream-light); }
  .sa-bar .d { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-12); }
  .sa-bar .title { margin-left: 10px; font-size: 13px; color: var(--slate-70); font-weight: 500; }
  .sa-bar .env { margin-left: auto; font-size: 11.5px; color: var(--slate-50); }
  .sa-body { display: grid; grid-template-columns: 138px 1fr; }
  @media (max-width: 520px) { .sa-body { grid-template-columns: 1fr; } .sa-side { display: none; } }
  .sa-side { border-right: 1px solid var(--slate-12); background: var(--cream-light); padding: 14px 10px; }
  .sa-side h6 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-50); font-weight: 600; margin: 0 6px 8px; }
  .sa-side ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
  .sa-side li { display: flex; align-items: center; gap: 9px; padding: 6px 8px; font-size: 12.5px; color: var(--slate-70); border-radius: 6px; }
  .sa-side li.active { background: var(--paper); color: var(--slate); font-weight: 600; box-shadow: 0 1px 0 var(--slate-06); }
  .sa-side li .ico { width: 13px; height: 13px; border-radius: 3px; background: var(--slate-12); flex: 0 0 13px; }
  .sa-side li.active .ico { background: var(--ember); }
  .sa-main { padding: 16px 16px 20px; min-width: 0; }
  .sa-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
  .sa-head h3 { font-size: 16px; font-weight: 700; }
  .sa-head .rec { background: var(--ember); color: #fff; font-size: 11.5px; font-weight: 600; padding: 7px 12px; border-radius: var(--radius-sm); white-space: nowrap; }
  .sa-sub { font-size: 12px; color: var(--slate-50); margin-bottom: 14px; }
  .sa-score { display: flex; align-items: center; gap: 18px; padding: 6px 2px 16px; border-bottom: 1px solid var(--slate-06); }
  .gauge { position: relative; flex: 0 0 auto; }
  .gauge .val { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
  .gauge .val.ember, .subcard .mini .v.ember { color: var(--ember); }
  .gauge .val.forest, .subcard .mini .v.forest { color: var(--forest); }
  .gauge .val.rust, .subcard .mini .v.rust { color: var(--rust); }
  .sa-score .meta .lab { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-50); font-weight: 600; }
  .sa-score .meta .big { font-size: 19px; font-weight: 700; margin: 3px 0 6px; }
  .sa-score .meta .desc { font-size: 12px; color: var(--slate-70); max-width: 24ch; line-height: 1.42; }
  .sa-subs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 16px; }
  .subcard { border: 1px solid var(--slate-12); border-radius: var(--radius-md); padding: 10px 3px 12px; text-align: center; min-width: 0; }
  .subcard .mini { position: relative; width: 52px; height: 52px; margin: 0 auto 6px; }
  .subcard .mini .v { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
  .subcard .cap { font-size: 10.5px; color: var(--slate-70); font-weight: 600; line-height: 1.15; }
  .subcard .wt { font-size: 9.5px; color: var(--slate-50); margin-top: 2px; }

  /* ===== Dashboard mock additions ========================= */
  .dash-bar .count { font-size: 11.5px; color: var(--slate-50); }
  .dash-head .flags { display: flex; gap: 8px; }
  .dash-side ul li.more { color: var(--slate-50); font-size: 12.5px; padding-left: 18px; }
  .scorebars { display: grid; gap: 12px; }
  .sb { display: grid; grid-template-columns: 80px 1fr 28px; align-items: center; gap: 12px; font-size: 12.5px; }
  .sb .k { color: var(--slate-70); font-weight: 500; }
  .sb .track { height: 7px; border-radius: 999px; background: var(--cream-deep); overflow: hidden; }
  .sb .fill { display: block; height: 100%; border-radius: 999px; background: var(--forest); }
  .sb .fill.ember { background: var(--ember); }
  .sb .fill.rust { background: var(--rust); }
  .sb .fill.w46 { width: 46%; }
  .sb .fill.w84 { width: 84%; }
  .sb .fill.w88 { width: 88%; }
  .sb .fill.w95 { width: 95%; }
  .sb .fill.w98 { width: 98%; }
  .sb .v { text-align: right; font-weight: 700; color: var(--slate); }

  /* Facility card head row + Landfill Module marker */
  .fac-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .fac-mod {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 7px;
    border-radius: 4px;
    background: var(--ember-tint);
    color: var(--ember);
    white-space: nowrap;
  }
  .fac-note {
    margin: 24px 0 0;
    font-size: 13.5px;
    color: var(--slate-70);
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .fac-note .fac-mod { position: relative; top: -1px; }
