.report-page {
  --report-heading-family: "Songti SC", "STSong", "Noto Serif SC", "Iowan Old Style", serif;
  --report-shell-width: var(--page-shell-width-standard);
  --report-shell-gutter: var(--page-shell-gutter);
  --report-shell-gutter-mobile: var(--page-shell-gutter-mobile);
  --report-card-radius: var(--surface-radius-card);
  --report-card-radius-mobile: var(--surface-radius-card-mobile);
  --report-request-padding-x: 24px;
  --report-request-padding-x-mobile: var(--surface-padding-mobile-x);
  --report-side-padding-x-mobile: var(--surface-padding-mobile-x);
  --report-side-padding-y-mobile: 20px;
}

.report-page {
  position: relative;
  z-index: 1;
  padding: 28px 0 88px;
}

.report-hero .container,
.report-section .container {
  width: min(var(--report-shell-width), calc(100% - var(--report-shell-gutter)));
}

.report-hero {
  padding: 36px 0 26px;
}

.report-hero-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.report-kicker {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-kicker::before {
  content: "✣";
  margin-right: 8px;
  font-size: 13px;
}

.report-hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--report-heading-family);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.report-title-line {
  display: inline;
}

.report-summary {
  width: min(980px, 100%);
  margin: 0;
  color: rgba(244, 234, 216, 0.84);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.74;
}

.report-section {
  padding: 18px 0 0;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.report-request-card,
.report-side-card {
  border-radius: var(--report-card-radius);
  border: 1px solid rgba(185, 154, 98, 0.12);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 244, 226, 0.04);
}

.report-request-card {
  padding: 30px var(--report-request-padding-x) 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(185, 154, 98, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(16, 21, 28, 0.96), rgba(10, 13, 18, 0.98));
}

.report-request-card.is-initializing {
  pointer-events: none;
}

.report-request-divider {
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(217, 194, 154, 0), rgba(217, 194, 154, 0.58), rgba(217, 194, 154, 0));
}

.report-request-divider--section {
  margin-top: 22px;
  margin-bottom: 18px;
}

.report-request-heading h2 {
  margin: 0 0 14px;
  color: rgba(236, 225, 204, 0.94);
  font-family: var(--report-heading-family);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.12;
}

.report-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.report-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-field {
  display: grid;
  gap: 8px;
}

.report-field span {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.report-field em {
  color: #d9b56b;
  font-style: normal;
}

.report-field input,
.report-field select,
.report-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(185, 154, 98, 0.18);
  padding: 13px 16px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.92), rgba(10, 13, 19, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 244, 226, 0.02);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.report-field input::placeholder,
.report-field textarea::placeholder {
  color: rgba(214, 196, 160, 0.32);
}

.report-field textarea {
  min-height: 116px;
  resize: vertical;
}

.report-field input:focus,
.report-field select:focus,
.report-field textarea:focus {
  border-color: rgba(217, 194, 154, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 226, 0.04),
    0 0 0 3px rgba(185, 154, 98, 0.1);
}

.report-request-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  width: 100%;
}

.report-submit {
  min-width: 420px;
  min-height: 64px;
  padding: 14px 62px 14px 28px;
  border: 1px solid rgba(217, 194, 154, 0.16);
  border-radius: 24px;
  color: rgba(247, 237, 221, 0.96);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 244, 226, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(255, 244, 226, 0.028), rgba(255, 244, 226, 0.004)),
    linear-gradient(180deg, rgba(28, 32, 40, 0.97), rgba(16, 19, 26, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 226, 0.08),
    inset 0 -10px 20px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 244, 226, 0.018),
    0 14px 28px rgba(0, 0, 0, 0.16);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.report-submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(217, 194, 154, 0.05), transparent 34%);
  opacity: 0.9;
  pointer-events: none;
}

.report-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(217, 194, 154, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 226, 0.1),
    inset 0 -10px 20px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 244, 226, 0.028),
    0 18px 34px rgba(0, 0, 0, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 244, 226, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 244, 226, 0.038), rgba(255, 244, 226, 0.008)),
    linear-gradient(180deg, rgba(31, 36, 45, 0.985), rgba(18, 22, 29, 1));
}

.report-submit::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(217, 194, 154, 0.72);
  border-right: 1.5px solid rgba(217, 194, 154, 0.72);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.report-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.report-submit__label {
  color: inherit;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.report-submit__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 12px;
  position: relative;
  z-index: 1;
}

.report-submit__divider {
  width: 1px;
  height: 16px;
  background: linear-gradient(180deg, rgba(217, 194, 154, 0), rgba(217, 194, 154, 0.22), rgba(217, 194, 154, 0));
}

.report-submit__price {
  color: rgba(225, 204, 165, 0.94);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.report-payment-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(214, 196, 160, 0.44);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

.report-payment-note__lock {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(214, 196, 160, 0.42);
}

.report-payment-note__lock svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 761px) {
  .report-submit {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 14px;
    text-align: center;
  }

  .report-submit__label {
    justify-self: center;
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: 0;
    text-align: center;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .report-submit__meta {
    justify-self: end;
    padding-right: 12px;
  }
}

.report-status {
  min-height: 28px;
  margin: 12px 0 0;
  color: rgba(217, 194, 154, 0.94);
  font-family: var(--sans);
  font-size: 13px;
  text-align: center;
}

.report-status.is-error {
  color: #df8f8f;
}

.report-side {
  display: grid;
  gap: 18px;
}

.report-side-card {
  padding: 24px 24px 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 154, 98, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(16, 21, 28, 0.96), rgba(10, 13, 18, 0.98));
}

.report-side-card--benefits {
  position: relative;
  padding-top: 55px;
}

.report-side-card--benefits::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 194, 154, 0), rgba(217, 194, 154, 0.58), rgba(217, 194, 154, 0));
}

.report-side-card h2 {
  margin: 0 0 16px;
  color: rgba(236, 225, 204, 0.94);
  font-family: var(--report-heading-family);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.18;
}

.report-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.report-benefits li {
  display: flex;
  gap: 14px;
  align-items: start;
  color: rgba(244, 234, 216, 0.94);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.58;
}

.report-benefits li > span:last-child {
  display: block;
  flex: 0 1 40ch;
  width: min(100%, 40ch);
  min-width: 0;
  text-align: left;
  text-wrap: wrap;
}

.report-benefit-icon {
  flex: 0 0 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  color: #d7b26d;
  font-size: 10px;
  line-height: 1;
}

.report-investment {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 194, 154, 0.16);
  display: grid;
  gap: 4px;
}

.report-investment strong {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.3;
}

.report-investment span {
  color: rgba(244, 234, 216, 0.72);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}

.report-side-card--delivery {
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 154, 98, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(16, 21, 28, 0.96), rgba(10, 13, 18, 0.98));
}

.report-delivery-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.report-delivery-item + .report-delivery-item {
  margin-top: 16px;
}

.report-delivery-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(217, 194, 154, 0.18), rgba(217, 194, 154, 0.06));
  border: 1px solid rgba(217, 194, 154, 0.12);
  color: #d7b26d;
}

.report-delivery-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.report-delivery-item strong {
  display: block;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.28;
}

.report-delivery-item p {
  margin: 4px 0 0;
  color: rgba(244, 234, 216, 0.76);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.62;
}

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

  .report-summary {
    width: min(760px, 100%);
  }
}

@media (max-width: 760px) {
  .report-page {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .report-hero .container,
  .report-section .container {
    width: min(var(--report-shell-width), calc(100% - var(--report-shell-gutter-mobile)));
  }

  .report-hero {
    padding: 30px 0 18px;
  }

  .report-hero-inner {
    gap: 22px;
  }

  .report-kicker {
    font-size: 13px;
  }

  .report-summary {
    font-size: 18px;
  }

  .report-request-card,
  .report-side-card {
    border-radius: var(--report-card-radius-mobile);
  }

  .report-request-card {
    padding: 24px var(--report-request-padding-x-mobile) 18px;
  }

  .report-side-card {
    padding: var(--report-side-padding-y-mobile) var(--report-side-padding-x-mobile) 22px;
  }

  .report-grid--two {
    grid-template-columns: 1fr;
  }

  .report-request-actions {
    margin-top: 24px;
  }

  .report-submit {
    min-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .report-field,
  .report-field > span,
  .report-field > select,
  .report-field > label,
  .report-field select,
  .report-field select + *,
  .report-request-card,
  .topic-entry-report-mobile .report-request-card {
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .report-field,
  .report-field select,
  .report-field > select,
  .topic-entry-report-mobile .report-field,
  .topic-entry-report-mobile .report-field select {
    position: relative;
    z-index: 9999 !important;
  }

  .report-hero {
    padding: 18px 0 14px;
  }

  .report-hero-inner {
    justify-items: start;
    text-align: left;
    gap: 16px;
  }

  .report-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .report-hero h1 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .report-title-line {
    display: block;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .report-summary {
    width: 100%;
    max-width: none;
    font-size: 15px;
    line-height: 1.82;
  }

  .report-layout {
    gap: 16px;
  }

  .report-request-card {
    padding: 22px 16px 18px;
    border-radius: 26px;
  }

  .report-side {
    display: grid;
    gap: 14px;
  }

  .report-side-card {
    padding: 18px 16px 20px;
    border-radius: 24px;
  }

  .report-side-card--benefits {
    padding-top: 18px;
  }

  .report-side-card--benefits::before {
    content: none;
  }

  .report-request-heading h2,
  .report-side-card h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .report-side-card--benefits h2 {
    position: relative;
    margin-bottom: 30px;
  }

  .report-side-card--benefits h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 194, 154, 0), rgba(217, 194, 154, 0.58), rgba(217, 194, 154, 0));
  }

  .report-grid {
    gap: 12px;
  }

  .report-field {
    gap: 7px;
  }

  .report-field span {
    font-size: 13px;
  }

  .report-field input,
  .report-field select,
  .report-field textarea {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 16px;
  }

  .report-field select {
    appearance: auto;
    -webkit-appearance: menulist;
    -webkit-text-fill-color: inherit;
  }

  .report-field select option {
    color: #111;
    background: #fff;
    -webkit-text-fill-color: #111;
  }

  .report-field textarea {
    min-height: 138px;
  }

  .report-request-actions {
    align-items: stretch;
    gap: 14px;
  }

  .report-submit {
    min-width: 0;
    min-height: 74px;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 12px;
    padding: 14px 52px 14px 18px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
  }

  .report-submit::after {
    right: 22px;
  }

  .report-submit__label {
    justify-self: center;
    font-size: 14px;
    line-height: 1.18;
    letter-spacing: 0;
    text-align: center;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .report-submit__meta {
    justify-self: end;
    gap: 12px;
    padding-right: 0;
  }

  .report-submit__price {
    font-size: 16px;
  }

  .report-payment-note {
    width: 100%;
    line-height: 1.6;
  }

  .report-benefits li,
  .report-delivery-item p {
    font-size: 14px;
    line-height: 1.72;
  }
}
