/* incident-division official styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root{
  --bg:#07101a;
  --panel:rgba(255,255,255,0.03);
  --accent:#e05a2f;
  --muted:#9fb4c9;
  --glass: rgba(255,255,255,0.04);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background: radial-gradient(circle at 10% 10%, #08121a 0%, #020306 60%);
  color: #dbeefc;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* header */
.gov-header{
  display:flex;
  gap:18px;
  align-items:center;
  padding:22px;
  border-bottom:1px solid rgba(255,255,255,0.04);
  background: linear-gradient(90deg, rgba(8,12,16,0.9), rgba(5,7,10,0.75));
}
.seal{width:108px;height:108px;flex:0 0 108px}
.header-text h1{
  margin:0;font-size:18px;letter-spacing:0.6px;color:#fff;
}
.report-id{margin:6px 0;color:var(--muted);font-size:13px}
.classification{
  display:inline-block;padding:6px 10px;margin-top:6px;background:rgba(224,90,47,0.12);
color:var(--accent);border-radius:4px;font-weight:600;font-size:12px;
box-shadow:0 2px 8px rgba(224,90,47,0.06);
}

/* main container */
.main-wrap{
  max-width:980px;margin:28px auto;padding:0 18px;
}

/* cards */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.03);
  padding:18px;border-radius:10px;margin-bottom:14px;box-shadow:0 8px 30px rgba(2,4,8,0.6);
}
.summary p{color:#d6eefc;line-height:1.5}
.cases ul{padding-left:18px;line-height:1.6;color:var(--muted);margin:0}
.cases li{margin:8px 0}

/* evidence grid */
.e-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px;align-items:start}
.e-item{background:var(--glass);padding:10px;border-radius:8px;border:1px solid rgba(255,255,255,0.02)}
.e-item img{width:100%;height:auto;border-radius:6px;display:block}
.e-item audio{width:100%}
.e-item pre{background:rgba(0,0,0,0.4);padding:10px;border-radius:6px;color:#cdeeff;overflow:auto}

/* encoded block */
.e-note{margin-top:12px;padding:12px;background:linear-gradient(180deg, rgba(224,90,47,0.03), rgba(255,255,255,0.01));border-left:4px solid rgba(224,90,47,0.6);border-radius:6px}
.e-note code{background:rgba(0,0,0,0.35);padding:4px 8px;border-radius:4px;color:#fff}
.small{color:var(--muted);font-size:13px;margin-top:6px}
button{margin-top:8px;background:#12202a;border:1px solid rgba(255,255,255,0.03);color:#cfeaff;padding:8px 12px;border-radius:6px;cursor:pointer}
button:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(0,0,0,0.6)}

/* advisory */
.advisory p{color:#ffd6c9}

/* investigators notes */
.investigators ol{color:var(--muted);margin:0 0 0 18px}

/* footer */
.gov-footer{display:flex;justify-content:space-between;gap:10px;padding:14px 18px;background:rgba(0,0,0,0.25);border-top:1px solid rgba(255,255,255,0.02);color:var(--muted);border-radius:0 0 6px 6px}
.gov-footer a{color:#a8d8ff;text-decoration:none}

/* responsive */
@media (max-width:900px){
  .e-grid{grid-template-columns:1fr}
  .gov-header{flex-direction:column;align-items:flex-start;gap:12px}
  .seal{width:86px;height:86px}
  .main-wrap{padding:0 12px}
}
body::before {
  content: "CONFIDENTIAL";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  letter-spacing: 1rem;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
