:root {
  font:
    16px/1.5 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #182322;
  background: #f4f5f1;
  --accent: #176455;
  --muted: #63706b;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
}
header,
main {
  max-width: 1440px;
  margin: auto;
  padding: 30px 40px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d6dfd8;
}
h1 {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 8px 0;
}
h2 {
  font-size: 21px;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
}
h3 {
  font-size: 17px;
}
p {
  color: var(--muted);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
}
section {
  background: white;
  border: 1px solid #dce2dc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
button {
  border: 0;
  border-radius: 7px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.secondary {
  background: #e9efea;
  color: #214839;
}
input,
textarea {
  font: inherit;
  border: 1px solid #c4cfc7;
  border-radius: 6px;
  padding: 10px;
  max-width: 100%;
  width: 100%;
}
label {
  display: block;
  margin: 12px 0;
}
.drop {
  padding: 18px;
  border: 1px dashed #8da497;
  border-radius: 8px;
  background: #f8faf7;
}
.drop input {
  border: 0;
  padding: 10px 0;
}
.status {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.status strong {
  display: block;
  font-size: 21px;
}
.columns {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
}
.project {
  display: block;
  width: 100%;
  text-align: left;
  margin: 10px 0;
  padding: 16px;
  background: #f2f5f1;
  color: #223b32;
  border: 1px solid transparent;
}
.project.selected {
  border-color: var(--accent);
}
.project span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.stage {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edf0eb;
  padding: 7px 0;
  font-size: 13px;
  gap: 12px;
}
.stage span:last-child {
  color: var(--muted);
}
.clip {
  border-top: 1px solid #dce2dc;
  padding: 18px 0;
}
.clip video {
  width: 100%;
  max-height: 430px;
  background: #101c18;
}
.clip img {
  width: 160px;
  float: right;
  margin: 0 0 10px 10px;
  border-radius: 6px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}
.links a {
  color: var(--accent);
}
.notice {
  background: #fff7df;
  border: 1px solid #eddb9b;
  border-radius: 6px;
  padding: 14px;
  color: #625320;
}
#error {
  color: #942f27;
}
progress {
  width: 100%;
  height: 8px;
  accent-color: var(--accent);
}
details {
  margin: 16px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
.review label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review input {
  width: auto;
}
a {
  color: var(--accent);
}
@media (max-width: 850px) {
  header,
  main {
    padding: 20px;
  }
  .columns {
    display: block;
  }
  .status {
    display: block;
  }
  .status > div {
    margin-bottom: 10px;
  }
  h1 {
    font-size: 24px;
  }
  header {
    align-items: flex-start;
    gap: 12px;
  }
}
