
:root {
  --cream: #f4efe4;
  --cream-2: #ebe4d4;
  --ink: #141414;
  --ink-2: #2a2a2a;
  --mute: #5c564c;
  --amber: #e8a317;
  --line: #d7cfc0;
  --white: #fffdf8;
  --max: 720px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 18px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-size: 1.1rem; letter-spacing: -0.02em; }
.brand-name span { font-size: 0.75rem; color: var(--mute); font-weight: 500; }
.top-link { font-size: 0.9rem; color: var(--mute); text-decoration: none; }
.hero { padding: 18px 0 8px; }
.kicker { color: var(--mute); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 8px; }
h1 { font-size: 2rem; letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 10px; }
.lede { color: var(--ink-2); margin: 0 0 22px; }
.drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 180px;
  border: 2px dashed var(--line);
  background: var(--white);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
}
.drop.drag { border-color: var(--ink); background: var(--cream-2); }
.drop strong { display: block; margin-bottom: 6px; }
.drop span { color: var(--mute); font-size: 0.95rem; }
#file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.list { list-style: none; padding: 0; margin: 18px 0 0; }
.list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.list button {
  border: 0; background: none; color: var(--mute); cursor: pointer; font-size: 0.9rem;
}
.actions { display: flex; gap: 10px; align-items: center; margin: 20px 0; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.status { color: var(--mute); font-size: 0.95rem; min-height: 1.4em; }
.note { color: var(--mute); font-size: 0.9rem; margin: 8px 0 40px; }
footer { color: var(--mute); font-size: 0.85rem; padding: 0 0 36px; }
footer a { color: var(--ink-2); }
