.report-public { min-height: 100vh; background: var(--bg); }
.report-public__header {
  width: min(1120px, calc(100% - 48px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
}
.report-public__back { font-size: 13px; color: var(--text-dim); }
.report-public__back:hover { color: var(--text); }

.report-page {
  min-width: 0;
  padding: 48px clamp(22px, 5vw, 72px) 72px;
  background:
    radial-gradient(720px 340px at 10% 0%, oklch(0.28 0.08 22 / 0.34), transparent 72%),
    var(--bg);
}
.report-page--portal { min-height: calc(100vh - 72px); }
.report-wrap { width: min(920px, 100%); margin: 0 auto; }
.report-hero { max-width: 760px; }
.report-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.report-hero > p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--text-2); line-height: 1.7; }
.report-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--accent-soft, var(--accent));
}

.report-emergency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 17px 19px;
  border: 1px solid oklch(0.48 0.13 35 / 0.72);
  border-radius: 14px;
  background: oklch(0.22 0.055 30 / 0.74);
}
.report-emergency__mark {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: oklch(0.62 0.18 35);
  border-radius: 50%;
  font-weight: 700;
}
.report-emergency strong { font-size: 14px; }
.report-emergency p { margin: 4px 0 0; color: var(--text-2); font-size: 13px; line-height: 1.55; }

.report-card {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface) 94%, var(--bg));
  box-shadow: 0 26px 64px oklch(0.04 0.01 20 / 0.34);
}
.report-alert {
  margin-top: 24px;
  padding: 17px 19px;
  color: oklch(0.94 0.025 25);
  border: 1px solid oklch(0.58 0.2 25);
  border-radius: 14px;
  background: oklch(0.24 0.07 25);
}
.report-alert strong { font-size: 14px; }
.report-alert ul { margin: 8px 0 0; padding-left: 20px; font-size: 13px; line-height: 1.55; }

.report-section { margin: 0; padding: 28px 30px; border: 0; }
.report-section + .report-section { border-top: 1px solid var(--line-2); }
.report-section legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}
.report-section legend > span:first-child {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 11px;
}
.report-help { margin: 9px 0 0 38px; color: var(--text-3); font-size: 13px; }
.report-reasons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.report-reason { position: relative; cursor: pointer; }
.report-reason input { position: absolute; opacity: 0; pointer-events: none; }
.report-reason span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 14px 11px 42px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  color: var(--text-2);
  background: var(--surface-2);
  font-size: 13px;
  line-height: 1.35;
}
.report-reason span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--text-3);
  border-radius: 50%;
}
.report-reason input:checked + span { color: var(--text); border-color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, var(--surface-2)); }
.report-reason input:checked + span::before { border: 5px solid var(--accent); background: #fff; }
.report-reason input:focus-visible + span { outline: 3px solid color-mix(in oklab, var(--accent) 32%, transparent); outline-offset: 2px; }

.report-field { display: grid; gap: 8px; margin-top: 22px; }
.report-field label { color: var(--text); font-size: 14px; font-weight: 500; }
.report-field label small { margin-left: 6px; color: var(--text-3); font-size: 11px; font-weight: 400; }
.report-field input,
.report-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}
.report-field input:focus,
.report-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent); }
.report-field p { margin: 0; color: var(--text-3); font-size: 11.5px; line-height: 1.5; }

.report-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 30px;
  border-top: 1px solid var(--line-2);
  background: color-mix(in oklab, var(--surface-2) 72%, var(--surface));
}
.report-submit p { max-width: 550px; margin: 0; color: var(--text-3); font-size: 11.5px; line-height: 1.55; }
.report-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.report-button:hover { color: var(--text); border-color: var(--accent); }
.report-button--primary { color: #fff; background: var(--accent); border-color: var(--accent); }
.report-button--primary:hover { color: #fff; background: var(--accent-hover); border-color: var(--accent-hover); }
.report-submit .report-button { flex: none; }

.report-success { padding: 42px 36px; text-align: center; }
.report-success__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 22px;
}
.report-success h2 { margin-top: 10px; font-size: 28px; }
.report-success > p:not(.report-kicker):not(.report-success__copy):not(.report-secured) { margin: 18px 0 8px; color: var(--text-2); }
.report-case { display: block; font-family: var(--mono); font-size: clamp(17px, 3vw, 24px); letter-spacing: 0.06em; color: var(--accent-soft, var(--accent)); overflow-wrap: anywhere; }
.report-success__copy { max-width: 610px; margin: 20px auto 0; color: var(--text-3); font-size: 13px; line-height: 1.6; }
.report-secured { max-width: 610px; margin: 18px auto 0; padding: 12px 14px; color: var(--text-2); background: color-mix(in oklab, var(--accent) 10%, var(--surface-2)); border: 1px solid color-mix(in oklab, var(--accent) 42%, var(--line)); border-radius: 10px; font-size: 12.5px; }
.report-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.report-process { margin-top: 52px; }
.report-process h2 { max-width: 650px; margin-top: 9px; font-size: 25px; }
.report-process__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.report-process__steps > div { min-height: 118px; padding: 18px; border: 1px solid var(--line-2); border-radius: 13px; background: color-mix(in oklab, var(--surface) 80%, transparent); }
.report-process__steps strong { display: block; font-family: var(--mono); color: var(--accent); font-size: 11px; }
.report-process__steps span { display: block; margin-top: 10px; color: var(--text-2); font-size: 12.5px; line-height: 1.55; }

@media (max-width: 860px) {
  .report-page { padding: 36px 20px 88px; }
  .report-process__steps { grid-template-columns: 1fr; }
  .report-process__steps > div { min-height: 0; }
}

@media (max-width: 620px) {
  .report-public__header { width: calc(100% - 32px); min-height: 72px; }
  .report-public__back { font-size: 11.5px; }
  .report-page { padding: 28px 14px 76px; }
  .report-hero h1 { font-size: 31px; }
  .report-reasons { grid-template-columns: 1fr; }
  .report-section { padding: 23px 18px; }
  .report-help { margin-left: 0; }
  .report-submit { align-items: stretch; flex-direction: column; gap: 18px; padding: 20px 18px; }
  .report-submit .report-button { width: 100%; }
  .report-success { padding: 34px 18px; }
}
