@font-face {
  font-family: system;
  src:
    local("Inter"),
    local("Arial");
  font-display: swap;
}
:root {
  font-family: system, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #243033;
  background: #f8faf8;
  font-synthesis: none;
  line-height: 1.5;
  --ink: #183d31;
  --accent: #227456;
  --border: #dce5de;
  --muted: #5d6c65;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  max-width: 1180px;
  margin: auto;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}
a {
  color: var(--accent);
  text-underline-offset: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  text-decoration: none;
  font-weight: 600;
}
.wordmark {
  color: var(--ink);
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -1.2px;
  text-decoration: none;
}
.wordmark span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -5px;
}
main {
  max-width: 1120px;
  margin: 26px auto 80px;
  padding: 0 24px;
}
.create-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: start;
}
.intro {
  position: sticky;
  top: 38px;
  padding-top: 30px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  font-size: clamp(35px, 4.5vw, 54px);
  line-height: 1.12;
  letter-spacing: -1.9px;
  color: var(--ink);
  margin: 22px 0;
}
h2 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 0 0 15px;
}
h3 {
  font-size: 17px;
  margin: 0;
}
.intro > p:not(.eyebrow) {
  font-size: 17px;
  max-width: 430px;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 34px 0;
}
.benefits li {
  margin: 12px 0;
  padding-left: 26px;
  position: relative;
}
.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.intro .quiet {
  font-size: 14px;
  color: var(--muted);
}
.panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 5px 20px #15322103;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 12px;
}
.section-title:first-child {
  margin-top: 0;
}
.section-title h2 {
  margin: 0;
}
.step {
  height: 26px;
  width: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ed;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.hint, .optional, .quiet {
  color: var(--muted);
  font-size: 13px;
}
.optional {
  font-weight: 400;
  margin-left: 5px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin: 17px 0 12px;
}
input, textarea, select {
  display: block;
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: #25352e;
  background: white;
  border: 1px solid #cbd7ce;
  border-radius: 6px;
  padding: 11px 12px;
  margin-top: 6px;
}
textarea {
  resize: vertical;
}
input[type="file"] {
  font-size: 12px;
  padding: 10px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #71ac8f;
  outline-offset: 2px;
}
button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  color: var(--ink);
  border: 1px solid #c9d6cc;
  border-radius: 7px;
  background: #f7faf7;
  padding: 11px 17px;
  text-decoration: none;
  line-height: 1.4;
}
button:hover, .button:hover {
  filter: brightness(0.96);
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.primary {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
}
#create-form > button {
  width: 100%;
  margin-top: 16px;
}
.danger {
  color: #a03430;
  background: #fff5f3;
  border-color: #ebc4c0;
}
.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--accent);
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-row {
  display: flex;
  gap: 18px;
  align-items: start;
}
.form-row > label {
  flex: 1;
  min-width: 0;
}
.preview img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
}
.preview:empty {
  display: none;
}
.notice, .verdict {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 7px;
  background: #eef5ef;
  color: #285438;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.notice.error, .verdict.reject {
  background: #fff1ef;
  color: #942f27;
}
.notice.pending, .verdict.needs-human {
  background: #fff7e4;
  color: #775819;
}
.notice a {
  color: inherit;
}
.verdict ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.narrow {
  max-width: 460px;
}
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.stat {
  flex: 1;
  min-width: 110px;
}
.stat strong {
  display: block;
  font-size: 27px;
  letter-spacing: -1px;
  color: var(--ink);
}
.stat span {
  font-size: 12px;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.inline-form {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
}
.inline-form label {
  flex: 1;
  min-width: 180px;
  margin-bottom: 0;
}
.inline-form button {
  margin-bottom: 0;
}
.campaign-card, .review-card {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.campaign-card:last-child, .review-card:last-child {
  padding-bottom: 0;
}
.campaign-card p, .review-card p {
  font-size: 14px;
  margin: 7px 0;
}
.pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  background: #edf2ee;
  font-size: 12px;
  margin-left: 10px;
}
.table-scroll {
  overflow-x: auto;
  margin-top: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
th, td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
th {
  background: #f6f8f5;
  font-weight: 650;
}
code, pre {
  font-size: 12px;
  background: #f2f5f1;
  border-radius: 4px;
}
code {
  padding: 2px 5px;
}
pre {
  padding: 16px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 650px;
  overflow: auto;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
}
.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  gap: 12px;
}
.token-row p {
  font-size: 13px;
  margin: 0;
}
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 25px 24px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
[hidden] {
  display: none !important;
}
@media (max-width: 800px) {
  header {
    padding: 22px 24px;
    min-height: 85px;
  }
  .create-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 610px;
  }
  .intro {
    position: static;
    padding-top: 0;
  }
  .intro h1 br {
    display: none;
  }
  .intro .benefits {
    margin: 22px 0;
  }
  .two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .panel {
    padding: 23px;
  }
  h1 {
    font-size: 38px;
  }
  .dashboard-top {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  header {
    padding: 20px;
  }
  main {
    padding: 0 15px;
  }
  .panel {
    padding: 20px;
  }
  .form-row {
    gap: 10px;
    flex-wrap: wrap;
  }
  .form-row > label {
    flex-basis: 120px;
  }
  .wordmark {
    font-size: 23px;
  }
  nav {
    gap: 12px;
    font-size: 12px;
  }
  h1 {
    font-size: 34px;
  }
  .stats {
    gap: 14px;
  }
  .stat {
    min-width: 100px;
  }
}
