/* ============================================
   Shared UI — buttons, inputs, labels, badges
   Used across every view
   ============================================ */

.primary-btn,.secondary-btn,.filter-button,.text-button {
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 850;
}

.mode-pill,.live-pill,.recommend-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  padding: 7px 10px;
}

.mode-pill {
  background: var(--lime);
  color: var(--ink);
}

.live-pill {
  background: #eef7f3;
  color: var(--green);
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.muted-label,.eyebrow {
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 950;
  color: #7a8598;
  text-transform: uppercase;
}

.page-top {
  padding: 60px clamp(24px,5vw,70px) 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.page-top h1 {
  font-size: clamp(38px,5vw,60px);
  letter-spacing: -.055em;
  margin: 9px 0 10px;
}

.page-top p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.primary-btn {
  border: 0;
  background: var(--ink);
  color: white;
}

.primary-btn:hover {
  background: #182337;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.filter-button {
  border: 1px solid var(--line);
  background: white;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  padding-left: 0;
}

input,select,textarea {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 11px;
  padding: 12px 13px;
  outline: none;
  width: 100%;
}

input:focus,select:focus,textarea:focus {
  border-color: #9ca8bb;
  box-shadow: 0 0 0 3px rgba(54,104,255,.08);
}

label {
  font-size: 12px;
  font-weight: 800;
  color: #4e596d;
}

label input,label select,label textarea {
  margin-top: 7px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recommend-pill {
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 5px 8px;
}

.recommend-pill.dark {
  background: #eef8ce;
  color: #607f00;
}

@media (max-width:520px) {
  .two-col {
      grid-template-columns: 1fr;
  }
}
