:root{
  --bg:#f6fbf7;
  --accent:#0e8a3a;
  --muted:#6b7280;
  --card:#ffffff;
  --glass: rgba(255,255,255,0.6);
}
*{box-sizing:border-box}
html,body,#root{height:100%}
body{margin:0;font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;color:#0f172a;background:linear-gradient(180deg,var(--bg),#eef6f1);}
.app{display:flex;min-height:100vh}
.sidebar{width:220px;background:linear-gradient(180deg, #05260f, #06381a);color:#dff6e6;padding:28px 18px;display:flex;flex-direction:column;justify-content:space-between}
.sidebar .logo{font-weight:800;font-size:22px;line-height:0.9}
.sidebar nav{margin-top:24px;display:flex;flex-direction:column;gap:12px}
.sidebar nav a{opacity:.9;padding:8px 10px;border-radius:8px;color:var(--glass);cursor:default}
.sidebar nav a.active{background:rgba(255,255,255,0.03);color:#fff}
.sidebar-footer{font-size:13px;opacity:.8}
.main{flex:1;padding:28px;display:flex;flex-direction:column}
.header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.header h1{margin:0;font-size:20px}
.muted{color:var(--muted);margin-top:4px}
.avatar{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,#e6fbf0,#d6f6e6);display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--accent)}
.hero{display:flex;gap:24px;align-items:center}
.hero-card{background:var(--card);padding:28px;border-radius:12px;box-shadow:0 8px 30px rgba(6,42,20,0.08);flex:1;transform:translateY(10px);animation:float 4s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(8px)}50%{transform:translateY(0)}}
.large{font-size:28px;margin:0}
.lead{color:var(--muted);margin-top:8px}
.actions{margin-top:18px;display:flex;gap:12px}
.btn{padding:10px 16px;border-radius:10px;border:0;cursor:pointer;font-weight:600}
.btn.primary{background:var(--accent);color:#fff;box-shadow:0 6px 18px rgba(14,138,58,0.18);transition:transform .12s ease}
.btn.ghost{background:transparent;border:1px solid rgba(15,23,42,0.06);color:var(--muted)}
.btn.primary:active{transform:translateY(1px) scale(.997)}
.hero-graphic{width:300px;display:flex;align-items:center;justify-content:center}
.chart{width:200px;height:120px;background:linear-gradient(180deg,#f7fff8,#f1fff4);border-radius:8px;padding:12px;display:flex;align-items:end;gap:8px}
.bar{width:20%;background:linear-gradient(180deg,#0b6b2e,#0e8a3a);height:50%;border-radius:6px;transform-origin:bottom;animation:grow 1.2s ease forwards}
.bar:nth-child(1){animation-delay:.1s}
.bar:nth-child(2){animation-delay:.15s}
.bar:nth-child(3){animation-delay:.2s}
.bar:nth-child(4){animation-delay:.25s}
.bar:nth-child(5){animation-delay:.3s}
.bar:nth-child(6){animation-delay:.35s}
.bar{height:var(--h)}
@keyframes grow{from{transform:scaleY(.2);opacity:0.3}to{transform:scaleY(1);opacity:1}}
.cards{display:flex;gap:16px;margin-top:20px}
.card{background:var(--card);padding:16px;border-radius:12px;flex:1;box-shadow:0 6px 20px rgba(8,36,18,0.06);transition:transform .2s ease}
.card:hover{transform:translateY(-6px)}
.card.pulse{box-shadow:0 12px 34px rgba(14,138,58,0.12)}
.card-title{font-size:13px;color:var(--muted)}
.card-value{font-size:18px;font-weight:700;margin-top:6px}
.footer{margin-top:auto;padding-top:20px;color:var(--muted)}
@media(max-width:900px){.sidebar{display:none}.hero{flex-direction:column}.hero-graphic{width:100%}.chart{width:100%}}
