:root {
  --ink: #13271d;
  --green: #2aae67;
  --lime: #d7ef62;
  --cream: #f7f6f1;
  --line: #d8dfd8;
  --muted: #65736c;
  --soft: #eff3ed;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f8fafb;
  color: var(--ink);
  font: 15px/1.65 Arial,"Microsoft YaHei",sans-serif;
}
.wrap {
  width: min(1080px,calc(100% - 40px));
  margin: auto;
}
header {
  background: #FFF;
  color: #2aae67;
}
.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav a {
  color: inherit;
  text-decoration: none;
}
.brand {
  font-weight: 800;
  font-size: 22px;
}
.brand img {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
}
.brand b {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  margin-right: 7px;
}
.hero {
  background: #2aae67;
  color: #FFF;
  padding: 100px 0;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  color: #5fae8c;
  margin: 0;
}
.hero h1,.form-section h2 {
  font-size: clamp(34px,5vw,56px);
  line-height: 1.16;
  max-width: 760px;
  margin: 14px 0;
}
.hero em {
  color: var(--lime);
  font-style: normal;
}
.hero p:not(.eyebrow) {
  color: #FFF;
  max-width: 550px;
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.hero .button {
  background: #FFF;
  color: var(--ink);
  margin-top: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  padding: 70px 0;
}
.steps article {
  border-top: 1px solid #9eb0a4;
  padding-top: 17px;
}
.steps b {
  color: var(--green);
  font-size: 12px;
}
.steps h2 {
  font-size: 20px;
  margin: 25px 0 6px;
}
.steps p,.muted,.note {
  color: var(--muted);
}
.form-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
  padding: 40px 0 90px;
}
.form-section h2 {
  font-size: 37px;
}
.form-section form,.login-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 9px;
  box-shadow: 9px 10px 0 #e3e9df;
}
label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin: 14px 0;
}
input,select {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 11px;
  margin-top: 6px;
  font: inherit;
  background: #fff;
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 5px;
  margin: 22px 0;
  padding: 7px 16px 13px;
}
legend {
  font-size: 12px;
  color: var(--muted);
  padding: 0 5px;
}
.upload-tip {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.field-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
}
.scene-group[hidden] {
  display: none !important;
}
.consent {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: normal;
}
.consent input {
  width: auto;
  margin: 4px 0;
}
.note {
  font-size: 11px;
}
.alert {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 13px;
}
.error {
  background: #ffe8e4;
  color: #9f2c1e;
}
.success {
  background: #e6f5db;
  color: #235e31;
}
footer {
  border-top: 1px solid var(--line);
  padding: 23px 0;
  color: var(--muted);
  font-size: 12px;
}
.login {
  display: grid;
  place-items: center;
  min-height: 100vh;
}
.login-card {
  width: min(400px,calc(100% - 40px));
}
.login-card h1 {
  margin-top: 0;
}
.login-card a {
  display: block;
  margin-top: 15px;
  color: var(--green);
}
.admin {
  padding: 45px 0;
}
.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}
.admin-head h1 {
  margin: 5px 0;
  font-size: 34px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  margin-bottom: 18px;
}
.metrics article,.panel,.applications {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.metrics article {
  padding: 18px;
}
.metrics span,.metrics small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.metrics b {
  display: block;
  font-size: 30px;
  line-height: 1.15;
  margin: 10px 0;
}
.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  margin-bottom: 18px;
}
.panel {
  padding: 21px;
}
.panel-title,.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.panel h2,.section-title h2 {
  font-size: 16px;
  margin: 0;
}
.panel-title span,.section-title span {
  font-size: 11px;
  color: var(--muted);
}
.bar-chart {
  height: 190px;
  display: flex;
  gap: 12px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 20px 5px 0;
  margin-top: 10px;
}
.bar-col {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 6px;
}
.bar-col b {
  font-size: 12px;
}
.bar-col i {
  display: block;
  width: min(34px,100%);
  background: var(--green);
  border-radius: 5px 5px 0 0;
}
.bar-col small {
  font-size: 10px;
  color: var(--muted);
}
.status-chart {
  padding-top: 12px;
}
.status-chart p {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 13px 0 6px;
}
.status-chart p small {
  font-weight: normal;
  color: var(--muted);
}
.status-chart>div>i {
  display: block;
  height: 8px;
  background: #edf0ed;
  border-radius: 8px;
  overflow: hidden;
}
.status-chart em {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: var(--green);
}
.status-chart .status-1 {
  background: #dc9b39;
}
.status-chart .status-2 {
  background: #4087aa;
}
.status-chart .status-3 {
  background: #bf5f57;
}
.applications {
  padding: 20px;
}
.section-title {
  margin-bottom: 14px;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 950px;
}
th,td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 12px;
}
th {
  background: var(--soft);
}
td a {
  color: var(--green);
}
.subtle {
  color: var(--muted);
}
.status-form {
  display: flex;
  gap: 5px;
}
.status-form select {
  margin: 0;
  padding: 5px;
}
.small {
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  padding: 5px 8px;
  cursor: pointer;
}
@media(max-width:720px) {
  .steps,.form-section,.visual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero {
    padding: 70px 0;
  }
  .form-section {
    padding-top: 20px;
  }
  .form-section form {
    padding: 20px;
  }
  .nav {
    height: 60px;
  }
  .admin-head {
    display: block;
  }
  .admin-head .button {
    margin-top: 12px;
  }
  .metrics {
    grid-template-columns: repeat(2,1fr);
  }
}
