.hero-report-open {
  margin-top: 1.1rem;
}

.report-open {
  border: 0;
  padding: 0;
  color: rgba(248, 245, 238, .72);
  background: transparent;
  font: inherit;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: .35rem;
  cursor: pointer;
}

.report-modal[hidden] { display: none; }
.report-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 8, 20, .8);
}

.report-panel {
  width: min(100%, 34rem);
  max-height: min(43rem, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1.3rem, 4vw, 2.25rem);
  border: 1px solid rgba(216, 181, 106, .45);
  border-radius: 1rem;
  background: linear-gradient(145deg, #10244a, #091326);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .48);
  color: #f8f5ee;
}

.report-panel h2 { margin: .35rem 0 .65rem; font-size: clamp(1.45rem, 4vw, 2.15rem); }
.report-panel p { color: rgba(248, 245, 238, .78); line-height: 1.6; }
.report-types { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; margin: 1.25rem 0; }
.report-type { position: relative; display: block; }
.report-type input { position: absolute; opacity: 0; }
.report-type span {
  display: block;
  padding: .72rem .6rem;
  border: 1px solid rgba(248, 245, 238, .25);
  border-radius: .55rem;
  color: #f8f5ee;
  font-size: .78rem;
  text-align: center;
  cursor: pointer;
}
.report-type input:checked + span { border-color: #d8b56a; background: rgba(216, 181, 106, .18); color: #f7d78e; }
.report-panel textarea { width: 100%; min-height: 6.7rem; box-sizing: border-box; resize: vertical; padding: .8rem; border: 1px solid rgba(248, 245, 238, .28); border-radius: .55rem; background: rgba(2, 8, 21, .55); color: #f8f5ee; font: inherit; }
.report-panel textarea:focus { outline: 2px solid #d8b56a; outline-offset: 2px; }
.report-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.report-actions button { padding: .7rem 1rem; border: 1px solid rgba(216, 181, 106, .6); border-radius: .45rem; background: transparent; color: #f8f5ee; font: inherit; font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.report-actions .report-submit { background: #d8b56a; color: #07142e; font-weight: 700; }

@media (max-width: 420px) { .report-types { grid-template-columns: 1fr; } }
