/* cattracks.app — install page (Chrome Web Store first, hand-install kept). */

.install-intro {
  padding-top: 3rem;
}

/* Ember "beta" pill (same treatment as the landing beta tag). */
.beta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid color-mix(in srgb, var(--ember) 45%, transparent);
  border-radius: 999px;
  padding: 0.3em 0.85em;
}

.beta-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.install-intro h1 {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin: 0.9rem 0 0.75rem;
}

.install-intro .tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

/* Two install routes side by side, stacking on narrow screens. */
.install-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.install-download {
  font-size: 1rem;
}

.install-req {
  font-size: 0.85rem;
  margin: 0.9rem 0 0;
}

.install-section {
  margin: 2.75rem 0;
}

.install-section h2 {
  font-size: 1.2rem;
  margin: 0 0 1.1rem;
}

/* Numbered steps — a normal decimal list that flows as prose.
   Must NOT be display:flex (a flex item isn't a list-item and drops its
   number); force display:list-item so the teal markers render. */
.install-steps {
  margin: 0;
  padding-left: 1.7rem;
  list-style: decimal;
  color: var(--fg);
}

.install-steps li {
  display: list-item;
  margin: 0 0 1rem;
  padding-left: 0.4rem;
  line-height: 1.6;
}

.install-steps li:last-child {
  margin-bottom: 0;
}

.install-steps li::marker {
  color: var(--signal);
  font-weight: 600;
}

/* Expectations — dotted list. */
.install-notes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.install-notes li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.install-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.install-steps strong,
.install-notes strong {
  color: var(--fg);
  font-weight: 600;
}

.install-section .muted {
  color: var(--muted);
}
