:root {
  --bg: #1e1e1e;
  --panel: #161616;
  --ink: #dfe6e9;
  --navy: #1e1e1e;
  --steel: #636e72;
  --ice: #dfe6e9;
  --mist: #636e72;
  --paper: #1e1e1e;
  --white: #dfe6e9;
  --line: #636e72;
  --accent: #22c55e;
  --kept: #22c55e;
  --broken: #d63031;
  --mute: #636e72;
  --radius: 8px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}
.nav, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}
.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ice);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.brand img {
  height: 28px;
  width: auto;
}
nav a, .btn { text-decoration: none; }
nav a { color: var(--mist); font-size: 0.95rem; font-family: ui-sans-serif, system-ui, sans-serif; }
main { max-width: 1040px; margin: 0 auto; padding: 1rem 1.5rem 4rem; }
.hero {
  text-align: center;
  padding: 2.2rem 0 3.2rem;
  max-width: none;
}
.logo-hero {
  display: block;
  width: min(420px, 78vw);
  height: auto;
  margin: 0 auto 1.4rem;
}
.logo-page {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin: 0.4rem auto 1.4rem;
}
.flow {
  text-align: center;
}
.flow form, .flow .card, .flow .preview {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.added {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}
.added li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  background: #0a0b10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.65rem;
  margin-top: 0.4rem;
}
.added button {
  background: none;
  border: 0;
  color: var(--mute);
  cursor: pointer;
  font-size: 0.8rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--mute);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  margin: 0.4rem auto 1rem;
  color: var(--ice);
  max-width: 22ch;
}
.lede, .fine { font-family: ui-sans-serif, system-ui, sans-serif; color: var(--mute); }
.lede { font-size: 1.05rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.6rem 0 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  border: 1px solid var(--steel);
}
.btn.primary { background: var(--accent); color: #0b140e; border-color: var(--accent); font-weight: 600; }
.btn.ghost { color: var(--ice); background: transparent; }
.btn.full { width: 100%; text-align: center; }
.fine { font-size: 0.82rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; padding: 1rem 0 2.5rem; }
.num { font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.75rem; color: var(--mute); }
h2 { font-size: 1.25rem; margin: 0.25rem 0 0.4rem; color: var(--ice); }
.grid-3 p, label, .hint, .preview p { font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.95rem; color: var(--mute); }
.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 0.65rem;
}
.chips em { color: var(--mute); font-style: normal; }
footer { color: var(--mute); font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.8rem; }

.progress { font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.78rem; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; }
form, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-width: 34rem;
}
label { display: block; color: var(--ice); margin: 0.9rem 0 0.3rem; font-size: 0.85rem; }
input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0b10;
  color: var(--ice);
  font: inherit;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.check { display: flex; align-items: flex-start; gap: 0.55rem; margin: 0.55rem 0; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.9rem; color: var(--ice); }
.check input { width: auto; margin-top: 0.2rem; }
.hint { font-size: 0.8rem; margin-top: 0.35rem; }
.step { display: none; }
.step.on { display: block; }
.preview {
  margin-top: 1.5rem;
  max-width: 34rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.status { display: inline-block; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.75rem; padding: 0.15rem 0.45rem; border-radius: 6px; }
.status.wait { background: #2a2a2a; color: var(--ice); }
.status.live { background: #16351f; color: #22c55e; }
.status.break { background: #3a1515; color: #d63031; }
@media (max-width: 640px) {
  .row { grid-template-columns: 1fr; }
  .hero { padding-top: 1rem; }
  .logo-hero { width: 100%; }
}
