:root {
  --ink: #101827;
  --muted: #667085;
  --line: #dfe5ef;
  --blue: #3568e8;
  --bg: #f3f6fb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font:
    15px/1.6 system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
.upload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  height: 70px;
  margin: auto;
}
.upload-header > a:last-child {
  color: #536176;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.upload-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}
.upload-brand span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}
.upload-shell {
  display: grid;
  grid-template-columns: 340px minmax(0, 720px);
  gap: 55px;
  width: min(1120px, calc(100% - 32px));
  margin: 45px auto 90px;
  align-items: start;
}
.upload-intro {
  position: sticky;
  top: 40px;
  padding-top: 20px;
}
.upload-intro > p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.upload-intro h1 {
  margin: 0 0 18px;
  font-size: 39px;
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.upload-intro > span {
  color: var(--muted);
}
.upload-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(32, 48, 75, 0.07);
}
.upload-error {
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 10px;
  color: #a12734;
  background: #fdebed;
  font-weight: 700;
}
.upload-form {
  display: grid;
  gap: 17px;
}
.upload-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}
.upload-form small {
  color: var(--muted);
  font-weight: 500;
}
.upload-form input,
.upload-form textarea,
.upload-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd7e5;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.upload-form input,
.upload-form select {
  min-height: 45px;
}
.upload-form textarea {
  resize: vertical;
}
.upload-form input:focus,
.upload-form textarea:focus,
.upload-form select:focus {
  outline: 3px solid rgba(53, 104, 232, 0.13);
  border-color: var(--blue);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.field-grid > label {
  align-self: start;
}
.form-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.form-section > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--blue);
  background: #eaf0ff;
  font-size: 11px;
  font-weight: 900;
}
.form-section h2 {
  margin: 0;
  font-size: 18px;
}
.form-section p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.security-note {
  display: flex;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  color: #40516b;
  background: #eef3fa;
  font-size: 11px;
}
.image-optimize-note {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #cfe3d8;
  border-radius: 10px;
  color: #365448;
  background: #f0f9f4;
  font-size: 11px;
}
.image-optimize-note strong {
  flex: none;
  color: #16724b;
}
.security-note strong {
  white-space: nowrap;
  color: #1f4bb7;
}
.upload-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.upload-methods > div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 11px;
  background: #f8fafc;
}
.upload-methods strong {
  color: #24344e;
  font-size: 13px;
}
.upload-methods span,
.upload-methods small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.upload-methods small {
  padding-top: 6px;
  border-top: 1px dashed #d7dfeb;
}
.upload-methods code,
.security-note code {
  padding: 1px 4px;
  border-radius: 4px;
  color: #1f4bb7;
  background: #eaf0ff;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.upload-form > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-top: 5px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.upload-form > button:hover {
  background: #2858d0;
}
.honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 850px) {
  .upload-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .upload-intro {
    position: static;
  }
  .upload-intro h1 br {
    display: none;
  }
  .upload-panel {
    padding: 24px;
  }
}
@media (max-width: 560px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
  .upload-shell {
    width: calc(100% - 20px);
  }
  .upload-panel {
    padding: 18px;
  }
  .upload-intro h1 {
    font-size: 32px;
  }
  .security-note {
    display: grid;
  }
  .image-optimize-note {
    display: grid;
  }
  .upload-methods {
    grid-template-columns: 1fr;
  }
}
.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}
.network-home {
  padding-left: 12px !important;
  border-left: 1px solid #dce2ec;
  color: #7b8493 !important;
  text-decoration: none;
  font-size: 11px !important;
  font-weight: 800;
}
.upload-brand span {
  background: #111 !important;
}
.upload-error {
  display: grid;
  gap: 3px;
  font-weight: 400;
}
.upload-error strong {
  font-weight: 800;
}
.upload-error span {
  font-size: 11px;
  color: #b34852;
}
.upload-header .brand-cluster {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap;
}
