@layer components {
  /* First run

     What a workspace with nothing in it says for itself. It sits exactly where
     the empty state sits and is set like one, because it is one — the only
     difference is that it has three things to say and one thing to press.

     The step numbers are mono, like every other number the system assigned
     rather than a person wrote. */

  .firstrun {
    padding: var(--space-8) 0 var(--space-10);
    padding-left: var(--list-indent);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .firstrun__line {
    font-size: var(--text-2xl);
    font-weight: var(--weight-heavy);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
    text-wrap: balance;
  }

  .firstrun__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    counter-reset: step;
  }

  .firstrun__step { display: flex; flex-direction: column; gap: var(--space); }

  .firstrun__title { font-size: var(--text-md); }

  .firstrun__title::before {
    counter-increment: step;
    content: counter(step);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: var(--weight-normal);
    color: var(--ink-faint);
    margin-right: var(--space-2);
  }

  .firstrun__hint { color: var(--ink-muted); font-size: var(--text-sm); max-width: var(--measure); }

  @media (max-width: 48rem) {
    .firstrun { padding-left: 0; }
  }
}
