/* Public "Walk This Site" demo page (demo.html on both brands).
   Uses only tokens both brand theme.css files define. */

.demo-hero {
  padding: 3.5rem 0 2rem;
}

.demo-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
}

.demo-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.demo-hero__subhead {
  max-width: 46rem;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
}

.demo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 6.5rem;
  padding: 0.55rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.demo-stats b {
  font-family: var(--font-data);
  font-size: 1.05rem;
  color: var(--ink);
}

.demo-stats span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.demo-stage {
  padding-bottom: 1rem;
}

.demo-status {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--ink-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

/* The walk viewer's idle stage sizes itself to its mount; give it a card
   frame consistent with the rest of the page. */
#demo-walk-mount:not(:empty) {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-inverse);
}

.demo-hint {
  max-width: 52rem;
  margin: 0.9rem auto 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
}

.demo-explain {
  padding: 2.5rem 0 4rem;
}

.demo-explain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 800px) {
  .demo-explain__grid {
    grid-template-columns: 1fr;
  }
}

.demo-cta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
