:root {
  color-scheme: dark;
  --bg: #070a15;
  --bg-deep: #050710;
  --panel: rgba(18, 23, 42, .94);
  --panel-solid: #12172a;
  --panel-raised: #181f38;
  --field: #0d1326;
  --field-hover: #121a31;
  --border: rgba(185, 198, 255, .12);
  --border-strong: rgba(171, 183, 255, .25);
  --text: #f8f9ff;
  --text-soft: #cbd1e8;
  --muted: #8992ae;
  --purple: #8d7cf4;
  --purple-strong: #6f62da;
  --blue: #6f91ff;
  --cyan: #77d8f2;
  --success: #59dba4;
  --danger: #ff748b;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Nunito", "M PLUS Rounded 1c", "Segoe UI", system-ui, sans-serif;
  font-family: var(--font);
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: var(--bg-deep); }
html.report-loading { overflow: hidden; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(111, 145, 255, .13), transparent 32rem),
    radial-gradient(circle at 88% 94%, rgba(141, 124, 244, .12), transparent 36rem),
    linear-gradient(145deg, var(--bg-deep), var(--bg) 52%, #0a1022);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg {
  width: 1.4em;
  height: 1.4em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(141, 124, 244, .62);
  outline-offset: 3px;
}

/* Quiet, non-flashing space shared with the current Mamestagram surfaces. */
.app-backdrop {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.app-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(180, 193, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 193, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.backdrop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .2;
}

.orb-purple {
  top: -280px;
  right: -180px;
  width: 680px;
  height: 680px;
  background: var(--purple);
}

.orb-blue {
  bottom: -360px;
  left: 4%;
  width: 780px;
  height: 780px;
  background: var(--blue);
}

/* Short transition used by sign-in, submission, and sign-out. */
.game-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  background: rgba(5, 7, 16, .97);
  transition: opacity .28s var(--ease), visibility .28s;
}

html.report-loading .game-loader,
.game-loader.is-active { display: grid; }
.game-loader.is-leaving { visibility: hidden; opacity: 0; }

.game-loader::before {
  content: "";
  position: absolute;
  width: 68vmax;
  height: 68vmax;
  border: 17vmax solid rgba(141, 124, 244, .025);
  border-top-color: rgba(111, 145, 255, .09);
  border-radius: 50%;
  animation: loader-spin 9s linear infinite;
}

.loader-screen {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(82vw, 410px);
  place-items: center;
  text-align: center;
}

.loader-logo {
  position: relative;
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 0 0 5px rgba(141, 124, 244, .18), 0 0 42px rgba(111, 145, 255, .18);
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.loader-logo::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 3px solid transparent;
  border-top-color: var(--purple);
  border-right-color: rgba(111, 145, 255, .3);
  border-radius: 50%;
  animation: loader-spin 1.4s linear infinite;
}

.loader-logo img {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

.loader-screen > strong { font-size: 1.45rem; font-weight: 900; letter-spacing: -.02em; }
.loader-screen > small { color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.loader-track {
  overflow: hidden;
  width: min(100%, 290px);
  height: 4px;
  margin: 18px 0 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}
.loader-track i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 16px rgba(141, 124, 244, .62);
  animation: loader-progress 1.2s var(--ease) infinite;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 44px), 1240px);
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
}

.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #bdb5ff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

/* Sign-in screen. */
.auth-view {
  display: grid;
  width: min(100%, 940px);
  margin: auto;
  padding: 52px 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 70px;
  animation: screen-enter .52s var(--ease) both;
}

.auth-introduction { position: relative; }
.auth-introduction::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  border: 36px solid rgba(141, 124, 244, .055);
  border-radius: 50%;
  pointer-events: none;
}
.auth-introduction > img {
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 25px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(141, 124, 244, .18), 0 18px 44px rgba(0, 0, 0, .3);
}
.auth-introduction h1 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
}
.auth-introduction > p:last-of-type {
  max-width: 550px;
  margin: 25px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.auth-steps {
  display: grid;
  max-width: 520px;
  margin: 32px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}
.auth-steps li {
  position: relative;
  display: grid;
  min-height: 70px;
  padding: 12px 15px;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(111, 145, 255, .08), rgba(141, 124, 244, .055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: border-color .2s, background .2s, transform .35s var(--ease);
}
.auth-steps li:hover {
  border-color: var(--border-strong);
  background: linear-gradient(110deg, rgba(111, 145, 255, .13), rgba(141, 124, 244, .1));
  transform: translateX(5px);
}
.auth-steps b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(171, 183, 255, .3);
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, rgba(111, 145, 255, .26), rgba(141, 124, 244, .22));
  box-shadow: 0 8px 20px rgba(5, 7, 16, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}
.auth-steps li > span { display: grid; min-width: 0; gap: 3px; }
.auth-steps strong { color: var(--text); font-size: .84rem; font-weight: 900; }
.auth-steps small { color: var(--muted); font-size: .68rem; line-height: 1.4; }
.auth-panel { overflow: hidden; border-radius: 16px; }
.auth-heading {
  display: flex;
  padding: 24px 27px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(115deg, rgba(111, 145, 255, .1), rgba(141, 124, 244, .06));
}
.heading-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  color: #d9d5ff;
  background: rgba(141, 124, 244, .14);
}
.auth-heading > span:last-child { display: grid; gap: 3px; }
.auth-heading small { color: var(--muted); font-size: .61rem; font-weight: 900; letter-spacing: .14em; }
.auth-heading strong { font-size: 1.05rem; }
.form-stack { display: grid; gap: 18px; padding: 27px; }

/* Signed-in report workspace. */
.report-view { width: 100%; padding: 28px 0 64px; animation: screen-enter .52s var(--ease) both; }
.report-toolbar {
  display: flex;
  min-height: 68px;
  margin-bottom: 18px;
  padding: 9px 10px 9px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 16, 31, .8);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
  backdrop-filter: blur(20px);
}
.report-brand { display: flex; align-items: center; gap: 12px; }
.report-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.report-brand > span { display: grid; line-height: 1.05; }
.report-brand strong { font-size: .97rem; font-weight: 900; }
.report-brand small { margin-top: 4px; color: var(--muted); font-size: .61rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.report-account {
  display: grid;
  min-width: 270px;
  padding: 5px;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(24, 31, 56, .72);
}
.account-avatar { display: block; width: 42px; height: 42px; border-radius: 9px; object-fit: cover; }
.account-copy { display: grid; min-width: 0; }
.account-copy small { color: var(--muted); font-size: .59rem; }
.account-copy strong { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }

.report-heading {
  position: relative;
  display: flex;
  min-height: 205px;
  margin-bottom: 18px;
  padding: 36px 42px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border: 1px solid rgba(185, 198, 255, .15);
  border-radius: 17px;
  background:
    radial-gradient(circle at 84% 18%, rgba(119, 216, 242, .17), transparent 22rem),
    radial-gradient(circle at 42% 130%, rgba(141, 124, 244, .32), transparent 28rem),
    linear-gradient(118deg, #27376b, #3f3e86 55%, #262d54);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}
.report-heading::before {
  content: "";
  position: absolute;
  top: -65%;
  right: -5%;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
}
.report-heading > * { position: relative; z-index: 1; }
.report-heading h1 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -.055em; line-height: .92; }
.report-heading > div:first-child > p:last-child { max-width: 610px; margin: 17px 0 0; color: rgba(255, 255, 255, .76); font-size: .92rem; }
.report-heading .eyebrow { color: rgba(255, 255, 255, .72); }
.heading-flow { display: flex; flex: none; align-items: center; gap: 10px; }
.heading-flow span { display: grid; min-width: 58px; justify-items: center; gap: 6px; }
.heading-flow b { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: #fff; background: rgba(5, 7, 16, .25); font-size: .75rem; }
.heading-flow small { color: rgba(255, 255, 255, .72); font-size: .63rem; font-weight: 800; }
.heading-flow i { width: 26px; height: 1px; background: rgba(255, 255, 255, .22); }

.report-form { overflow: hidden; border-radius: 16px; }
.form-heading {
  display: flex;
  min-height: 82px;
  padding: 20px 27px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(24, 31, 56, .58);
}
.form-heading > span { display: grid; gap: 3px; }
.form-heading small { color: #aaa1ff; font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.form-heading strong { font-size: 1.2rem; }
.form-heading p { margin: 0; color: var(--muted); font-size: .72rem; }
.form-section { min-width: 0; }
.target-section { display: grid; padding: 26px 28px; align-items: center; grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr); gap: 30px; border-bottom: 1px solid var(--border); }
.section-heading { display: flex; align-items: center; gap: 13px; }
.section-heading > span:last-child { display: grid; min-width: 0; }
.section-number { display: grid; width: 37px; height: 37px; flex: none; place-items: center; border: 1px solid rgba(141, 124, 244, .26); border-radius: 10px; color: #d7d2ff; background: rgba(141, 124, 244, .11); font-size: .74rem; font-weight: 900; }
.section-heading h2,
.section-heading p { margin: 0; }
.section-heading h2 { font-size: .98rem; font-weight: 900; }
.section-heading p { margin-top: 3px; color: var(--muted); font-size: .68rem; }
.form-columns { display: grid; grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr); }
.form-columns .form-section { padding: 27px 28px 28px; }
.reason-section { border-right: 1px solid var(--border); }
.form-columns .section-heading { margin-bottom: 21px; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.reason-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.reason-option { position: relative; min-width: 0; cursor: pointer; }
.reason-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.reason-option-content {
  position: relative;
  display: flex;
  min-height: 48px;
  padding: 9px 12px;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-soft);
  background: var(--field);
  transition: color .2s, border-color .2s, background .22s, transform .35s var(--ease);
}
.reason-indicator { position: relative; width: 18px; height: 18px; flex: none; border: 2px solid var(--border-strong); border-radius: 50%; background: var(--panel-solid); }
.reason-indicator::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .3s var(--ease); }
.reason-option-content strong { overflow-wrap: anywhere; font-size: .72rem; line-height: 1.25; }
.reason-option:hover .reason-option-content { color: #fff; border-color: var(--border); background: var(--field-hover); transform: translateX(4px); }
.reason-option input:checked + .reason-option-content { color: #fff; border-color: rgba(141, 124, 244, .35); background: linear-gradient(105deg, rgba(111, 145, 255, .17), rgba(141, 124, 244, .14)); }
.reason-option input:checked + .reason-option-content .reason-indicator { border-color: var(--purple); background: var(--purple-strong); }
.reason-option input:checked + .reason-option-content .reason-indicator::after { opacity: 1; transform: scale(1); }
.reason-option input:focus-visible + .reason-option-content { outline: 3px solid rgba(141, 124, 244, .62); outline-offset: 2px; }

.field > span:not(.visually-hidden) { display: block; margin-bottom: 7px; color: var(--text-soft); font-size: .74rem; font-weight: 800; }
input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  color: #fff;
  background: var(--field);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
input[type="text"],
input[type="password"] { height: 52px; padding: 0 15px; }
textarea { height: 252px; min-height: 252px; max-height: 252px; padding: 14px 15px; resize: none; line-height: 1.55; }
input::placeholder,
textarea::placeholder { color: #727d9a; opacity: 1; }
input:focus,
textarea:focus { border-color: rgba(141, 124, 244, .46); background: var(--field-hover); box-shadow: 0 0 0 4px rgba(141, 124, 244, .08); }
.field-hint { display: block; margin-top: 7px; color: var(--muted); font-size: .66rem; text-align: right; font-variant-numeric: tabular-nums; }

.evidence-guide {
  display: flex;
  margin: 0 28px 25px;
  padding: 15px 17px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(111, 145, 255, .18);
  border-radius: 10px;
  background: rgba(111, 145, 255, .07);
}
.guide-icon { display: grid; width: 38px; height: 38px; flex: none; place-items: center; border-radius: 9px; color: #b8c7ff; background: rgba(111, 145, 255, .12); }
.evidence-guide > span:last-child { display: grid; gap: 3px; }
.evidence-guide strong { font-size: .77rem; }
.evidence-guide small { color: var(--muted); font-size: .69rem; }
.form-actions { display: flex; padding: 20px 28px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--border); background: rgba(7, 10, 21, .38); }
.form-actions p { max-width: 500px; margin: 0; color: var(--muted); font-size: .68rem; }

.primary-button,
.secondary-button { border: 0; cursor: pointer; font-weight: 900; }
.primary-button {
  display: inline-flex;
  min-height: 49px;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(110deg, var(--purple-strong), #657fe9);
  box-shadow: 0 9px 25px rgba(111, 98, 218, .25);
  font-size: .8rem;
  transition: filter .2s, box-shadow .2s, transform .4s var(--ease);
}
.primary-button:hover { filter: brightness(1.12); box-shadow: 0 12px 32px rgba(111, 98, 218, .34); transform: translateY(-2px); }
.primary-button:active { transform: scale(.96); transition-duration: .08s; }
.primary-button:disabled { cursor: wait; opacity: .65; }
.secondary-button { min-height: 36px; padding: 0 13px; border-radius: 8px; color: var(--text-soft); background: rgba(5, 7, 16, .45); font-size: .68rem; transition: color .2s, background .2s; }
.secondary-button:hover { color: #fff; background: var(--panel-raised); }
.submit-button { min-width: 190px; }

.notice {
  position: fixed;
  z-index: 60;
  top: 24px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 48px), 620px);
  min-height: 58px;
  padding: 12px 17px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #171d32;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  animation: notice-enter .5s var(--ease) both;
}
.notice > span:last-child { display: grid; gap: 2px; }
.notice strong { font-size: .77rem; }
.notice small { color: var(--text-soft); font-size: .7rem; }
.notice-icon { display: grid; width: 30px; height: 30px; flex: none; place-items: center; border-radius: 8px; font-size: .76rem; font-weight: 900; }
.notice.error { border-left: 4px solid var(--danger); }
.notice.error .notice-icon { color: var(--danger); background: rgba(255, 116, 139, .12); }
.notice.success { border-left: 4px solid var(--success); }
.notice.success .notice-icon { color: var(--success); background: rgba(89, 219, 164, .11); }

@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-breathe { 0%, 100% { transform: scale(.96); filter: brightness(.92); } 50% { transform: scale(1.03); filter: brightness(1.13); } }
@keyframes loader-progress { 0% { transform: translateX(-120%); } 55% { transform: translateX(110%); } 100% { transform: translateX(270%); } }
@keyframes screen-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes notice-enter { from { opacity: 0; transform: translate(-50%, -20px) scale(.96); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }

@media (max-width: 980px) {
  .app-shell { width: min(calc(100% - 32px), 920px); }
  .auth-view { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); }
  .report-heading { padding: 32px; }
  .form-columns { grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); }
}

@media (max-width: 780px) {
  .auth-view { width: min(100%, 520px); grid-template-columns: 1fr; gap: 35px; }
  .auth-introduction { text-align: center; }
  .auth-introduction > img { margin-right: auto; margin-left: auto; }
  .auth-introduction > p:last-of-type { margin-right: auto; margin-left: auto; }
  .auth-steps { margin-right: auto; margin-left: auto; text-align: left; }
  .auth-introduction::after { display: none; }
  .report-heading { align-items: flex-start; flex-direction: column; }
  .heading-flow { align-self: stretch; justify-content: flex-start; }
  .target-section { grid-template-columns: 1fr; gap: 18px; }
  .form-columns { grid-template-columns: 1fr; }
  .reason-section { border-right: 0; border-bottom: 1px solid var(--border); }
  .reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  textarea { height: 210px; min-height: 210px; max-height: 210px; }
}

@media (max-width: 600px) {
  .app-shell { width: 100%; }
  .auth-view { padding: 28px 13px 42px; }
  .auth-introduction h1 { font-size: 3.15rem; }
  .auth-introduction > p:last-of-type { font-size: .88rem; }
  .auth-steps { width: 100%; gap: 7px; }
  .auth-steps li { min-height: 66px; padding: 10px 12px; grid-template-columns: 38px minmax(0, 1fr); gap: 11px; }
  .auth-steps b { width: 38px; height: 38px; }
  .auth-steps strong { font-size: .78rem; }
  .auth-steps small { font-size: .64rem; }
  .auth-panel { border-radius: 13px; }
  .report-view { padding: 10px 0 38px; }
  .report-toolbar { margin: 0 10px 10px; min-height: 62px; }
  .report-brand img { width: 42px; height: 42px; }
  .report-brand small { display: none; }
  .report-account { min-width: 0; padding: 4px; }
  .account-copy { display: none; }
  .report-account { grid-template-columns: 38px auto; }
  .account-avatar { width: 38px; height: 38px; }
  .report-heading { min-height: 0; margin: 0 10px 10px; padding: 27px 22px; border-radius: 13px; gap: 26px; }
  .report-heading h1 { font-size: 2.75rem; }
  .report-heading > div:first-child > p:last-child { font-size: .78rem; line-height: 1.5; }
  .heading-flow { gap: 6px; }
  .heading-flow span { min-width: 48px; }
  .heading-flow b { width: 34px; height: 34px; }
  .heading-flow i { width: 18px; }
  .report-form { margin: 0 10px; border-radius: 13px; }
  .form-heading { padding: 18px 20px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .target-section,
  .form-columns .form-section { padding: 22px 20px; }
  .reason-grid { grid-template-columns: 1fr; }
  textarea { height: 190px; min-height: 190px; max-height: 190px; }
  .evidence-guide { margin: 0 20px 21px; align-items: flex-start; }
  .evidence-guide small { line-height: 1.45; }
  .form-actions { padding: 19px 20px 21px; align-items: stretch; flex-direction: column; gap: 14px; }
  .submit-button { width: 100%; min-width: 0; }
  .notice { top: 12px; width: calc(100% - 20px); }
}

@media (max-width: 390px) {
  .report-brand strong { font-size: .86rem; }
  .secondary-button { padding: 0 10px; }
  .auth-steps li { padding-inline: 10px; }
  .heading-flow small { font-size: .57rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
