:root{
  --bg:#020b16;
  --card:#071827;
  --card2:#091e30;
  --border:#1c3448;
  --text:#eef5fa;
  --muted:#8fa5b8;
  --yellow:#f4d51f;
  --red:#ff4652;
  --green:#72d69b;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif}
button{font:inherit}
.topbar{display:flex;justify-content:space-between;align-items:center;padding:22px 20px;border-bottom:1px solid rgba(255,255,255,.06);position:sticky;top:0;background:rgba(2,11,22,.94);backdrop-filter:blur(12px);z-index:5}
h1,h2,h3,p{margin:0}
h1{font-size:22px}
.eyebrow{font-size:10px;letter-spacing:1.7px;font-weight:800;color:#a9c0d2}
.icon-btn{background:var(--card);border:1px solid var(--border);border-radius:12px;color:var(--yellow);width:40px;height:40px}
.container{max-width:900px;margin:auto;padding:22px 18px 100px}
.hero{background:linear-gradient(135deg,var(--card),var(--card2));border:1px solid var(--border);border-radius:20px;padding:22px;display:grid;gap:20px}
.hero h2{font-size:27px;margin:7px 0}
.hero p{color:var(--muted);line-height:1.55;max-width:650px}
.primary{border:0;background:var(--yellow);color:#101820;font-weight:900;border-radius:12px;padding:14px 18px;cursor:pointer}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:14px 0}
.stats article{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:16px}
.stats strong{display:block;font-size:25px;color:var(--yellow)}
.stats span{font-size:11px;color:var(--muted)}
.section{margin-top:25px}
.section-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.section-head h3{font-size:17px}
.link-btn{background:none;border:0;color:var(--yellow);font-size:12px}
.inspection-card{background:var(--card);border:1px solid var(--border);border-radius:17px;padding:17px;margin-bottom:12px}
.inspection-card h3{font-size:16px;margin:10px 0 6px}
.inspection-card p{color:var(--muted);font-size:12px}
.status{display:inline-block;font-size:9px;font-weight:900;letter-spacing:1px;padding:6px 8px;border-radius:7px}
.status.active{background:rgba(244,213,31,.1);color:var(--yellow)}
.status.signed{background:rgba(114,214,155,.1);color:var(--green)}
.card-foot{display:flex;justify-content:space-between;align-items:center;margin-top:16px;color:var(--muted);font-size:11px}
.secondary{background:transparent;border:1px solid var(--border);color:var(--text);padding:8px 12px;border-radius:9px}
.bottom-nav{position:fixed;bottom:0;left:0;right:0;height:70px;background:#06121f;border-top:1px solid var(--border);display:flex;justify-content:space-around;z-index:10}
.bottom-nav a{color:#71889b;text-decoration:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;font-size:18px;min-width:55px}
.bottom-nav span{font-size:9px}
.bottom-nav .selected{color:var(--yellow)}
@media(min-width:700px){
  .hero{grid-template-columns:1fr auto;align-items:center}
}
