:root {
  --bg: #070809;
  --text: #f4f1ec;
  --muted: #b6b0a7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff7a1a;
  --accent-strong: #ffb04d;
  --danger: #fb7185;
  --success: #4ade80;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 26%),
    linear-gradient(180deg, #0b0c0d 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.28;
}

.glowOne {
  top: -10rem;
  right: -10rem;
  background: rgba(255, 122, 26, 0.22);
}

.glowTwo {
  bottom: -10rem;
  left: -8rem;
  background: rgba(255, 184, 77, 0.12);
}

.pageShell {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
}

.brand,
.backLink {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.backLink {
  color: var(--muted);
  text-decoration: none;
}

.reportLayout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.eyebrow,
.sectionLabel {
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

h1 {
  margin: 0;
  max-width: 10ch;
  line-height: 0.98;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.lead,
.bulletList li,
.reportHint,
label {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.lead {
  max-width: 54ch;
  margin-top: 18px;
}

.bulletList {
  margin: 20px 0 0;
  padding-left: 18px;
}

.bulletList li + li {
  margin-top: 10px;
}

.reportCard {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 16, 18, 0.9);
}

input,
textarea,
button {
  box-sizing: border-box;
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0d0e;
  color: var(--text);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus {
  outline: 2px solid rgba(255, 122, 26, 0.26);
  outline-offset: 1px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1c0d02;
}

.submitButton {
  margin-top: 6px;
}

.reportHint {
  min-height: 18px;
  margin: 0;
}

.reportHint.error {
  color: var(--danger);
}

.reportHint.success {
  color: var(--success);
}

@media (max-width: 860px) {
  .reportLayout {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}
