:root {
  color-scheme: light;
  --ink: #14231d;
  --muted: #68766d;
  --line: rgba(36, 57, 45, 0.14);
  --panel: rgba(255, 252, 242, 0.86);
  --paper: #fffaf0;
  --brand: #1f7a5d;
  --brand-dark: #14231d;
  --gold: #e7c46a;
  --rust: #a94724;
  --shadow: 0 22px 70px rgba(20, 35, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei UI", "Noto Serif SC", "Songti SC", serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(31, 122, 93, 0.2), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(231, 196, 106, 0.26), transparent 24%),
    linear-gradient(135deg, #f6efe1 0%, #eef7ee 54%, #edf3ff 100%);
  min-height: 100vh;
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.hero > div,
.status-card,
.panel,
.metric {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero > div {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    #14231d;
  color: #fffaf0;
}

.hero > div::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(231, 196, 106, 0.22);
}

.eyebrow,
.section-title span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(231, 196, 106, 0.24);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.48;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fffaf0;
}

.policy-shell {
  max-width: 920px;
}

.policy-panel {
  line-height: 1.75;
}

.policy-panel .section-title h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.policy-panel h2 {
  margin: 28px 0 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.policy-panel p,
.policy-panel li {
  color: var(--muted);
  font-size: 15px;
}

.policy-panel ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.policy-panel a {
  color: var(--brand);
  font-weight: 800;
}

.policy-back {
  margin-bottom: 22px;
  border-color: var(--line);
  color: var(--ink);
}

.status-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 220px;
  padding: 24px;
}

.status-card span,
.metric span,
label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.status-card strong {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.status-card small {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  letter-spacing: -0.06em;
}

.panel {
  margin-bottom: 18px;
  padding: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title h2 {
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.section-title p {
  max-width: 720px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(110px, 180px) 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.bar-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(20, 35, 29, 0.08);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--gold));
}

.pattern-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pattern-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.report-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
}

.wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input {
  height: 44px;
  padding: 0 13px;
}

textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
  line-height: 1.7;
}

input:focus,
textarea:focus {
  border-color: rgba(31, 122, 93, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 122, 93, 0.12);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-actions strong {
  color: var(--muted);
  font-size: 13px;
}

.table-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.search {
  width: min(320px, 100%);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

table {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  border-bottom: 1px solid rgba(20, 35, 29, 0.08);
  padding: 13px;
  vertical-align: top;
  text-align: left;
  font-size: 13px;
}

th {
  position: sticky;
  top: 0;
  background: #f7f3e9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.handle {
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.tags {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 860px) {
  .shell {
    width: min(100vw - 18px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .split,
  .report-form,
  .table-head {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 46px;
  }
}
