:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #d8d4ce;
  --copper: #b87333;
  --copper-deep: #8f5a28;
  --card: #ffffff;
  --shadow: 0 1px 0 rgba(26,26,26,0.04), 0 12px 32px rgba(26,26,26,0.06);
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --max: 720px;
  --wide: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
}

.site-header {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  display: flex;
  justify-content: center;
}
.logo {
  width: min(520px, 92vw);
  height: auto;
  display: block;
}

main { padding-bottom: 4rem; }

.hero, .band, .services, .coming, .close, .proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}
.services { max-width: var(--wide); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  color: var(--copper-deep);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn.primary {
  background: var(--ink);
  color: #fff;
}
.btn.primary:hover { background: #000; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost:hover { border-color: var(--copper); color: var(--copper-deep); }

.band h2, .services h2, .coming h2, .close h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.band p, .close p { color: var(--muted); margin: 0; }

.cards {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.cards li {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
  border-top: 2px solid var(--copper);
}
.cards h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.cards p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.proof { max-width: var(--wide); }
.proof-inner {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: #faf8f5;
  color: var(--ink);
  border-radius: 4px;
}

.proof .eyebrow { color: var(--copper-deep); }
.proof-line { margin: 0; font-size: 1.1rem; line-height: 1.45; color: var(--muted); }
.proof-line strong { font-weight: 600; color: var(--ink); }

.coming ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0.75rem;
}
.coming li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.tag {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--copper-deep);
  background: #faf8f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-top: 0.1rem;
}
.note { font-size: 0.9rem; color: var(--muted); margin: 0; }

.close { text-align: center; padding-top: 3.5rem; }
.close .btn { margin-top: 1.25rem; }

footer {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}
footer a { color: var(--ink); }

@media (max-width: 600px) {
  .logo { width: min(100%, 92vw); }
}

/* Campaign journey demo */
.demo {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}
.demo-intro {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}
.journey {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.journey-step {
  appearance: none;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.65rem 0.4rem;
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.journey-step:hover { border-color: var(--copper); color: var(--ink); }
.journey-step.is-active {
  background: #2c2a28;
  border-color: #2c2a28;
  color: #fff;
}
.journey-step.is-active .step-num { color: #e8c4a0; }
.step-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
  opacity: 0.7;
}
.step-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.journey-panel { display: none; }
.journey-panel.is-active { display: block; }
.journey-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.panel-scene {
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.panel-bullets {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.panel-bullets li { margin-bottom: 0.35rem; }
.panel-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  background: #faf8f5;
  color: var(--muted);
  font-size: 0.92rem;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.journey-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.journey-status {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
}
.journey-nav .btn { cursor: pointer; }
.journey-nav .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .journey-step:last-child { grid-column: 1 / -1; }
  .step-label { font-size: 0.75rem; }
}

.demo .journey-steps {
  gap: 0.35rem;
}
.demo h2 {
  max-width: none;
}
