/* ---- Buttons ---- */
.cj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 28px;
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
  cursor: pointer;
  text-decoration: none;
}

.cj-btn--primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cj-btn--primary:hover { background: #1648c0; }

.cj-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cj-btn--outline:hover { background: var(--accent-bg); }

.cj-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.cj-btn--ghost:hover { border-color: #94A3B8; }

.cj-btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}

.cj-btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---- Badges ---- */
.cj-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border-radius: var(--r-badge);
  padding: 7px 13px;
  white-space: nowrap;
}

.cj-badge--blue {
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--border-2);
}

.cj-badge--label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-badge);
}

.cj-badge--tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 8px;
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: var(--r-badge-s);
}

/* ---- Section header ---- */
.cj-section-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.cj-section-title {
  font-family: var(--font-tight);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text);
}

/* ---- Divider ---- */
.cj-divider {
  height: 1px;
  background: var(--border);
}

/* ---- Avatar ---- */
.cj-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--bg-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-tight);
  flex-shrink: 0;
}

/* ---- Stars ---- */
.cj-stars {
  color: var(--warning);
  letter-spacing: 1px;
}

/* ---- Logo wordmark ---- */
.cj-logo {
  font-family: var(--font-tight);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.5px;
  color: var(--text);
  text-decoration: none;
}
.cj-logo span { color: var(--accent); }

/* ---- Logo icon ---- */
.cj-logo-icon {
  display: inline-flex;
  width: 30px;
  height: 21px;
  border-radius: 5px;
  background: linear-gradient(135deg, #1a2543, #0B1121);
  border: 1px solid rgba(96,165,250,.5);
  position: relative;
  transform: rotate(-12deg);
  flex-shrink: 0;
}
.cj-logo-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 6px;
  border-radius: 1.5px;
  background: linear-gradient(135deg, #dbe6ff, #7aa2ff);
}
