@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c0: #08080a; --c1: #111114; --c2: #18181d; --c3: #222228; --c4: #2e2e38;
  --c6: #5a5a6e; --c7: #8888a0; --c8: #b8b8cc; --c9: #e8e8f0;
  --acc: #6ee7b7; --acc2: #34d399; --acc3: #059669;
  --pur: #a78bfa; --yel: #fbbf24; --red: #f87171; --blue: #60a5fa;
  --border: rgba(255,255,255,0.06); --border2: rgba(255,255,255,0.11);
}

html { scroll-behavior: smooth; }
body { background: var(--c0); font-family: 'DM Sans', sans-serif; color: var(--c9); min-height: 100vh; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; border-bottom: 1px solid var(--border);
  background: rgba(8,8,10,.97); position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
}
.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.nav-mark {
  width: 30px; height: 30px; background: var(--acc); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #071510; flex-shrink: 0;
}
.nav-brand { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--c9); }
.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-size: 13px; color: var(--c7); text-decoration: none;
  padding: 6px 10px; border-radius: 7px; transition: all .15s;
}
.nav-link:hover, .nav-link.active { color: var(--c9); background: var(--c2); }
.nav-right { display: flex; gap: 8px; align-items: center; }
.btn-ghost {
  padding: 6px 14px; border-radius: 8px; border: 1px solid var(--border2);
  background: transparent; color: var(--c8); font-family: 'DM Sans', sans-serif;
  font-size: 13px; cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--c2); }
.btn-primary {
  padding: 7px 16px; border-radius: 8px; background: var(--acc); color: #071510;
  border: none; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--acc2); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hb-line { width: 20px; height: 2px; background: var(--c8); border-radius: 1px; transition: all .25s; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c1); z-index: 100; padding: 20px; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mm-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.mm-close { width: 30px; height: 30px; border-radius: 8px; background: var(--c3); border: none; color: var(--c7); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mm-link { display: block; font-size: 15px; color: var(--c7); padding: 12px; border-radius: 9px; margin-bottom: 4px; text-decoration: none; transition: all .15s; }
.mm-link:hover, .mm-link.active { background: var(--c2); color: var(--c9); }
.mm-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mm-btns { display: flex; gap: 10px; margin-top: 8px; }
.mm-btn-ghost { flex: 1; padding: 12px; border-radius: 9px; border: 1px solid var(--border2); background: transparent; color: var(--c8); font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; text-align: center; display: block; }
.mm-btn-primary { flex: 1; padding: 12px; border-radius: 9px; background: var(--acc); color: #071510; border: none; font-size: 13px; cursor: pointer; font-family: 'Syne', sans-serif; font-weight: 700; text-decoration: none; text-align: center; display: block; }

/* ── HERO ── */
.hero { padding: 64px 32px 48px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 380px; background: radial-gradient(ellipse, rgba(110,231,183,.07) 0%, transparent 70%); pointer-events: none; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(110,231,183,.08); border: 1px solid rgba(110,231,183,.18); border-radius: 20px; padding: 4px 13px; font-size: 11px; color: var(--acc); margin-bottom: 18px; font-family: 'DM Mono', monospace; }
.h1 { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--c9); margin-bottom: 14px; letter-spacing: -.025em; line-height: 1.15; }
.h1 em, .h2 em { font-style: normal; color: var(--acc); }
.h2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--c9); margin-bottom: 10px; letter-spacing: -.02em; }
.lead { font-size: 16px; color: var(--c7); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.hero-ctas { display: flex; gap: 10px; justify-content: center; margin: 24px 0 40px; flex-wrap: wrap; }
.cta-main { padding: 13px 28px; border-radius: 10px; background: var(--acc); color: #071510; border: none; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block; }
.cta-main:hover { background: var(--acc2); }
.cta-sec { padding: 13px 22px; border-radius: 10px; background: transparent; color: var(--c8); border: 1px solid var(--border2); font-family: 'DM Sans', sans-serif; font-size: 14px; cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block; }
.cta-sec:hover { background: var(--c2); }
.stats { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; }
.stat-val { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--c9); letter-spacing: -.02em; }
.stat-val em { color: var(--acc); font-style: normal; }
.stat-label { font-size: 12px; color: var(--c6); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 48px 32px; }
.section-center { text-align: center; }
.section-center .lead { margin: 0 auto 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.card { background: var(--c1); border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: border-color .15s; }
.card:hover { border-color: var(--border2); }
.card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.card-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--c9); margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--c7); line-height: 1.6; }

/* ── TAGS ── */
.tag { display: inline-block; font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.tag-g { background: rgba(110,231,183,.1); color: var(--acc); }
.tag-p { background: rgba(167,139,250,.1); color: var(--pur); }
.tag-y { background: rgba(251,191,36,.1); color: var(--yel); }
.tag-b { background: rgba(96,165,250,.1); color: var(--blue); }
.tag-r { background: rgba(248,113,113,.1); color: var(--red); }

/* ── CHIPS FILTER ── */
.chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.chip { padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border2); background: transparent; color: var(--c7); font-size: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .15s; }
.chip.active, .chip:hover { background: rgba(110,231,183,.08); border-color: rgba(110,231,183,.2); color: var(--acc); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 32px; }

/* ── FOOTER ── */
.footer { padding: 24px 32px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 16px; }
.footer-link { font-size: 12px; color: var(--c6); text-decoration: none; transition: color .15s; }
.footer-link:hover { color: var(--c9); }

/* ── PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.plan { background: var(--c1); border: 1px solid var(--border); border-radius: 16px; padding: 22px; transition: border-color .15s; }
.plan:hover { border-color: var(--border2); }
.plan.featured { border-color: rgba(110,231,183,.3); background: linear-gradient(135deg, rgba(110,231,183,.04), var(--c1)); }
.plan-label { font-size: 10px; padding: 2px 9px; border-radius: 4px; background: rgba(110,231,183,.1); color: var(--acc); font-weight: 500; font-family: 'DM Mono', monospace; display: inline-block; margin-bottom: 10px; }
.plan-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--c9); margin-bottom: 4px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--c9); letter-spacing: -.02em; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--c6); }
.plan-desc { font-size: 12px; color: var(--c6); margin: 6px 0 14px; line-height: 1.5; }
.plan-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.plan-feat { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--c7); }
.plan-feat-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(110,231,183,.12); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--acc); flex-shrink: 0; }
.plan-btn { width: 100%; padding: 11px; border-radius: 10px; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; border: none; text-decoration: none; display: block; text-align: center; }
.plan-btn-primary { background: var(--acc); color: #071510; }
.plan-btn-primary:hover { background: var(--acc2); }
.plan-btn-ghost { background: transparent; color: var(--c8); border: 1px solid var(--border2) !important; }
.plan-btn-ghost:hover { background: var(--c2); }

/* ── NEWSLETTER ── */
.newsletter { background: linear-gradient(135deg, rgba(110,231,183,.06), rgba(52,211,153,.02)); border: 1px solid rgba(110,231,183,.15); border-radius: 16px; padding: 32px; text-align: center; }
.nl-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--c9); margin-bottom: 8px; }
.nl-sub { font-size: 14px; color: var(--c7); margin-bottom: 20px; }
.nl-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.nl-input { flex: 1; background: var(--c2); border: 1px solid var(--border2); border-radius: 9px; padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--c9); outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: rgba(110,231,183,.4); }
.nl-input::placeholder { color: var(--c6); }
.nl-btn { padding: 11px 20px; border-radius: 9px; background: var(--acc); color: #071510; border: none; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all .15s; }
.nl-btn:hover { background: var(--acc2); }

/* ── FEATURED FEAT BOX ── */
.feat-box { background: linear-gradient(135deg, rgba(110,231,183,.05), transparent); border: 1px solid rgba(110,231,183,.12); border-radius: 16px; padding: 24px; }
.feat-box-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--c9); margin-bottom: 16px; }
.feat-box-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--c7); line-height: 1.5; }
.feat-dot { width: 24px; height: 24px; border-radius: 7px; background: rgba(110,231,183,.12); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ── CASE CARDS ── */
.case-card { background: var(--c1); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .2s; }
.case-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.case-cover { height: 90px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.case-body { padding: 16px; }
.case-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--c9); margin: 7px 0 5px; }
.case-desc { font-size: 12px; color: var(--c7); line-height: 1.6; margin-bottom: 9px; }
.case-quote { font-size: 11px; color: var(--c6); font-style: italic; border-left: 2px solid var(--border2); padding-left: 9px; line-height: 1.5; margin-bottom: 10px; }
.case-stats { display: flex; gap: 8px; }
.case-stat { flex: 1; text-align: center; background: var(--c2); border-radius: 7px; padding: 7px; }
.case-stat-val { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--c9); }
.case-stat-label { font-size: 9px; color: var(--c6); margin-top: 1px; }

/* ── BLOG ── */
.feat-post { background: var(--c1); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 24px; transition: border-color .2s; }
.feat-post:hover { border-color: var(--border2); }
.feat-cover { display: flex; align-items: center; justify-content: center; font-size: 64px; }
.feat-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.feat-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--c9); margin: 8px 0; line-height: 1.3; }
.feat-excerpt { font-size: 13px; color: var(--c7); line-height: 1.7; margin-bottom: 14px; }
.feat-meta { font-size: 12px; color: var(--c6); margin-bottom: 14px; }
.post-card { background: var(--c1); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .2s; }
.post-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.post-cover { display: flex; align-items: center; justify-content: center; font-size: 30px; }
.post-body { padding: 14px; }
.post-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--c9); margin: 6px 0 5px; line-height: 1.35; }
.post-excerpt { font-size: 12px; color: var(--c7); line-height: 1.6; margin-bottom: 8px; }
.post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--c6); }
.read-more { display: block; margin-top: 8px; font-size: 12px; color: var(--acc); text-decoration: none; }
.read-more:hover { text-decoration: underline; }

/* ── RECURSOS ── */
.res-card { background: var(--c1); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: flex; gap: 14px; transition: all .15s; }
.res-card:hover { border-color: rgba(110,231,183,.2); transform: translateY(-1px); }
.res-num { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.res-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--c9); margin-bottom: 5px; }
.res-desc { font-size: 12px; color: var(--c7); line-height: 1.65; margin-bottom: 7px; }

/* ── LOGIN / CADASTRO ── */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 60px); }
.auth-left { background: linear-gradient(135deg, #0d1f1a, #071510); padding: 48px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-left::before { content: ''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(110,231,183,.1) 0%, transparent 70%); pointer-events: none; }
.auth-right { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.auth-title { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.auth-sub { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }
.auth-demo-box { background: rgba(110,231,183,.08); border: 1px solid rgba(110,231,183,.15); border-radius: 10px; padding: 16px; }
.auth-form-title { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: var(--c9); margin-bottom: 5px; }
.auth-form-sub { font-size: 14px; color: var(--c6); margin-bottom: 24px; }
.field-label { font-size: 11px; color: var(--c7); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; display: block; }
.field-input { width: 100%; background: var(--c2); border: 1px solid var(--border2); border-radius: 9px; padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--c9); outline: none; transition: border-color .15s; margin-bottom: 14px; }
.field-input:focus { border-color: rgba(110,231,183,.4); }
.field-input::placeholder { color: var(--c6); }
.btn-submit { width: 100%; padding: 13px; border-radius: 10px; background: var(--acc); color: #071510; border: none; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .15s; }
.btn-submit:hover { background: var(--acc2); }
.auth-switch { text-align: center; margin-top: 16px; font-size: 13px; color: var(--c6); }
.auth-switch a { color: var(--acc); text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* ── PASSWORD STRENGTH ── */
.pwd-bars { display: flex; gap: 4px; margin-bottom: 6px; }
.pwd-bar { flex: 1; height: 3px; border-radius: 2px; background: var(--c4); transition: background .3s; }
.pwd-bar.active { background: var(--acc); }

/* ── BILLING TOGGLE ── */
.billing-toggle { display: inline-flex; gap: 4px; background: var(--c2); padding: 3px; border-radius: 9px; margin-bottom: 32px; }
.billing-btn { padding: 7px 20px; border-radius: 7px; border: none; font-family: 'DM Sans', sans-serif; font-size: 13px; cursor: pointer; transition: all .15s; }
.billing-btn.active { background: var(--c1); color: var(--c9); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.billing-btn { background: transparent; color: var(--c7); }

/* ── DEMO ── */
.demo-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 500px; }
.demo-sidebar { background: var(--c1); border-right: 1px solid var(--border); padding: 20px 14px; }
.demo-menu-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 8px; font-size: 13px; color: var(--c7); margin-bottom: 3px; cursor: pointer; transition: all .15s; border: 1px solid transparent; text-decoration: none; }
.demo-menu-item:hover { background: var(--c2); color: var(--c9); }
.demo-menu-item.active { background: rgba(110,231,183,.08); color: var(--acc); border-color: rgba(110,231,183,.15); font-weight: 500; }
.demo-content { padding: 24px; background: var(--c0); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi-card { background: var(--c1); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; position: relative; overflow: hidden; }
.kpi-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; border-radius: 10px 10px 0 0; }
.kpi-g::after { background: linear-gradient(90deg, var(--acc2), transparent); }
.kpi-p::after { background: linear-gradient(90deg, var(--pur), transparent); }
.kpi-y::after { background: linear-gradient(90deg, var(--yel), transparent); }
.kpi-r::after { background: linear-gradient(90deg, var(--red), transparent); }
.kpi-label { font-size: 10px; color: var(--c6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.kpi-value { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--c9); }
.kpi-value span { font-size: 13px; font-weight: 400; color: var(--c6); }
.kpi-detail { font-size: 11px; margin-top: 3px; font-family: 'DM Mono', monospace; }
.kpi-g .kpi-detail { color: var(--acc); }
.kpi-p .kpi-detail { color: var(--pur); }
.kpi-y .kpi-detail { color: var(--yel); }
.kpi-r .kpi-detail { color: var(--red); }

/* ════════════════════
   RESPONSIVE MOBILE
════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 12px 16px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 36px 16px 28px; }
  .h1 { font-size: 26px; }
  .lead { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-main, .cta-sec { width: 100%; max-width: 300px; text-align: center; padding: 13px; }
  .stats { gap: 20px; }
  .stat-val { font-size: 24px; }

  /* Sections */
  .section { padding: 28px 16px; }
  .divider { margin: 0 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .billing-toggle { width: 100%; }

  /* Features */
  .feat-box-grid { grid-template-columns: 1fr; }

  /* Blog */
  .feat-post { grid-template-columns: 1fr; }
  .feat-cover { height: 120px; }

  /* Cases */
  .case-cover { height: 70px; font-size: 28px; }

  /* Newsletter */
  .nl-form { flex-direction: column; }
  .nl-btn { width: 100%; }

  /* Auth */
  .auth-split { grid-template-columns: 1fr; }
  .auth-left { padding: 32px 20px; min-height: 220px; }
  .auth-right { padding: 28px 20px; }
  .auth-title { font-size: 22px; }

  /* Demo */
  .demo-layout { grid-template-columns: 1fr; }
  .demo-sidebar { display: none; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer { flex-direction: column; padding: 20px 16px; }
  .footer-links { gap: 12px; flex-wrap: wrap; }

  /* Chips */
  .chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; gap: 10px; max-width: 440px; margin: 0 auto; }
  .feat-box-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
}
