/* ══════════════════════════════════════
   Account  (ac-*)
══════════════════════════════════════ */

.ac-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ac-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 0 8px;
}

.ac-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
}

.ac-avatar svg { width: 40px; height: 40px; }

.ac-avatar-label {
  font-size: var(--fs-12);
  color: var(--ink-mid);
}

.ac-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ac-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  min-height: 52px;
}

.ac-row-action {
  cursor: pointer;
  transition: background 0.15s;
}
.ac-row-action:hover { background: var(--surface2); }

.ac-row-text { flex: 1; min-width: 0; }

.ac-row-label {
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--ink);
}

.ac-row-sub {
  font-size: var(--fs-12);
  color: var(--ink-mid);
  margin-top: 2px;
}

.ac-row-arrow {
  font-size: var(--fs-18);
  color: var(--ink-mid);
}

.ac-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ac-dot-on  { background: var(--ok); }
.ac-dot-off { background: var(--border); }
