/* ============================================================
   Shared components: buttons, chrome cards, bullets, chips…
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  line-height: 1.2;
}
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-mid); box-shadow: var(--shadow-md); color: #fff; }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { background: var(--white); border-color: var(--sky); box-shadow: var(--glow-sky); color: var(--text); }
/* Sizing lives on modifiers, not the base class. --sm is the name the
   ancillary pages use for this size; --nav is the home page's older alias.
   Keep them equal so the shared nav renders the same everywhere. */
.btn--nav,
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--hero { padding: 14px 26px; font-size: 15px; }

/* ---------- Section eyebrow ([01] · Feature — JetBrains Mono, gold) ---------- */
.eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .14em;
}

/* Uppercase kicker (hero / dark sections) */
.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}

/* Feature heading */
.feature-h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 10px 0 0;
}

/* ---------- Check bullets (18px sky-pale circles, navy check) ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 11px;
}
.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.check-list .check-dot {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--sky-pale);
  border: 1.5px solid var(--sky);
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Browser-chrome product mock card ---------- */
.chrome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.chrome-card--lg { box-shadow: var(--shadow-lg); }
.chrome-card--md { box-shadow: var(--shadow-md); }
.chrome-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-light);
  background: var(--off-white);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--border);
  display: block;
}
.chrome-dots--lg i { width: 10px; height: 10px; }
.chrome-url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* ---------- Small tag / pill helpers ---------- */
.tag-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 99px;
}
.tag-pill--purple { background: var(--purple-soft); color: var(--purple); }

/* 24px assignee initials avatar */
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  flex: 0 0 auto;
}
.avatar--navy { background: var(--navy); }
.avatar--gold { background: var(--gold); }
.avatar--sky { background: var(--sky); color: var(--navy); }
